diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2005-12-09 16:08:18 +0000 |
---|---|---|
committer | Roberto Togni <r_togni@tiscali.it> | 2005-12-09 16:08:18 +0000 |
commit | e0f7e3297073e341b43522d67ad717a3d568cd3c (patch) | |
tree | 4251f14d6f4e6dfa54f6b0fb73fc9c4a81cdb4e9 /libavcodec/allcodecs.c | |
parent | 60d76256cb6abb7a5f65e434031d0ebb114599ea (diff) | |
download | ffmpeg-e0f7e3297073e341b43522d67ad717a3d568cd3c.tar.gz |
Cook compatibe decoder, patch by Benjamin Larsson
Add cook demucing, change rm demuxer so that it reorders audio packets
before sending them to the decoder, and send minimum decodeable sized
packets; pass only real codec extradata fo the decoder
Fix 28_8 decoder for the new demuxer strategy
Originally committed as revision 4726 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index d7aa1e0a29..c8c37ea5af 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -491,6 +491,9 @@ void avcodec_register_all(void) #ifdef CONFIG_QDM2_DECODER register_avcodec(&qdm2_decoder); #endif //CONFIG_QDM2_DECODER +#ifdef CONFIG_COOK_DECODER + register_avcodec(&cook_decoder); +#endif //CONFIG_COOK_DECODER #ifdef CONFIG_RAWVIDEO_DECODER register_avcodec(&rawvideo_decoder); #endif //CONFIG_RAWVIDEO_DECODER |