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/Makefile | |
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/Makefile')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index cacf074389..ecbca83884 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -32,6 +32,9 @@ endif ifeq ($(CONFIG_CINEPAK_DECODER),yes) OBJS+= cinepak.o endif +ifeq ($(CONFIG_COOK_DECODER),yes) + OBJS+= cook.o +endif ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),) OBJS+= cljr.o endif |