summaryrefslogtreecommitdiff
path: root/libavcodec/allcodecs.c
diff options
context:
space:
mode:
authorEmiliano Parasassi <millallo@gmail.com>2006-07-07 11:08:58 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-07 11:08:58 +0000
commit29c5cdcaec66b3e2a783eb1d34bdb8cba5d9192f (patch)
treed03be09e200a8f3f7d8afc486d6a3bfd15e6b89d /libavcodec/allcodecs.c
parent6a09487edc1d5954d59a7fb0075ea88a8a0950b3 (diff)
downloadffmpeg-29c5cdcaec66b3e2a783eb1d34bdb8cba5d9192f.tar.gz
Fix compilation with --disable-decoders.
patch by Emiliano Parasassi, millallo --at-- gmail --dot-- com Originally committed as revision 5660 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r--libavcodec/allcodecs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index 81e5204a41..6138b55b8c 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -640,7 +640,9 @@ PCM_CODEC(CODEC_ID_ADPCM_SBPRO_2, adpcm_sbpro_2);
/* parsers */
av_register_codec_parser(&mpegvideo_parser);
av_register_codec_parser(&mpeg4video_parser);
+#ifdef CONFIG_CAVS_DECODER
av_register_codec_parser(&cavsvideo_parser);
+#endif
#if defined(CONFIG_H261_DECODER) || defined(CONFIG_H261_ENCODER)
av_register_codec_parser(&h261_parser);
#endif