aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/allcodecs.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-08-26 07:42:25 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-08-26 07:42:25 +0000
commit922bc38d55995536e84db1b704fdccc140870d26 (patch)
tree4fc62daffb1badfa2042b0ba71271be898a2a9c5 /libavcodec/allcodecs.c
parente4eadb4b44a5bd446d2f83e92a7baeddb82448ad (diff)
downloadffmpeg-922bc38d55995536e84db1b704fdccc140870d26.tar.gz
mpeg2 regression test
add mpeg2video_decoder, thats more consistant with the encoders, note, both mpeg1video and mpeg2video decoder will happily decode both mpeg1 and 2 Originally committed as revision 2166 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r--libavcodec/allcodecs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index f6695303cf..bd544f7d92 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -96,7 +96,8 @@ void avcodec_register_all(void)
register_avcodec(&mpeg4aac_decoder);
#endif
#endif
- register_avcodec(&mpeg_decoder);
+ register_avcodec(&mpeg1video_decoder);
+ register_avcodec(&mpeg2video_decoder);
#ifdef HAVE_XVMC
register_avcodec(&mpeg_xvmc_decoder);
#endif