diff options
author | Chris Rankin <rankincj@yahoo.com> | 2011-08-29 09:33:16 +0100 |
---|---|---|
committer | Chris Rankin <rankincj@yahoo.com> | 2011-08-29 09:33:16 +0100 |
commit | 80cbcb6136ca8a4b93c8dd652e8349c7f9ac9dd4 (patch) | |
tree | 0d4bf3e1b2a812fdcfd2fd408a8d1b7392536ef6 /src/xine-engine/buffer.h | |
parent | d211575f64577027568ff85497eb357f878401fb (diff) | |
download | xine-lib-80cbcb6136ca8a4b93c8dd652e8349c7f9ac9dd4.tar.gz xine-lib-80cbcb6136ca8a4b93c8dd652e8349c7f9ac9dd4.tar.bz2 |
Add AAC LATM support from FFmpeg 0.7+
I've now tested this patch on Fedora 15 (FFmpeg 0.7) and Fedora 14 (FFmpeg
0.6), and am happy to report that it works fine on F15 and doesn't break
xine-lib on F14. On F14, it also has the happy side effect of no longer
trying to decode an LATM AAC stream with the xineplug_decode_faad.so plugin.
(Which was something which never ended well anyway.)
Diffstat (limited to 'src/xine-engine/buffer.h')
-rw-r--r-- | src/xine-engine/buffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index 9198ff103..8f5d1152e 100644 --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.h @@ -262,6 +262,7 @@ extern "C" { #define BUF_AUDIO_AMR_NB 0x033F0000 #define BUF_AUDIO_AMR_WB 0x03400000 #define BUF_AUDIO_EAC3 0x03410000 +#define BUF_AUDIO_AAC_LATM 0x03420000 /* spu buffer types: */ |