summaryrefslogtreecommitdiff
path: root/libavcodec/msmpeg4.c
diff options
context:
space:
mode:
authorStefan Gehrer <stefan.gehrer@gmx.de>2008-06-25 11:33:49 +0000
committerStefan Gehrer <stefan.gehrer@gmx.de>2008-06-25 11:33:49 +0000
commit5a8939698932bcd8a34574c9472af8901fa80729 (patch)
treeb33b52b363a708ad0d84a08fb2c0b5f9953875bc /libavcodec/msmpeg4.c
parent796d200a77a90e82897f1deac5513b9d903e8c21 (diff)
remove duplicate tables
Originally committed as revision 13959 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r--libavcodec/msmpeg4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c
index efe5344a11..214ebb4b93 100644
--- a/libavcodec/msmpeg4.c
+++ b/libavcodec/msmpeg4.c
@@ -98,7 +98,7 @@ static void common_init(MpegEncContext * s)
case 3:
if(s->workaround_bugs){
s->y_dc_scale_table= old_ff_y_dc_scale_table;
- s->c_dc_scale_table= old_ff_c_dc_scale_table;
+ s->c_dc_scale_table= wmv1_c_dc_scale_table;
} else{
s->y_dc_scale_table= ff_mpeg4_y_dc_scale_table;
s->c_dc_scale_table= ff_mpeg4_c_dc_scale_table;