aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-10-16 17:23:18 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-10-16 17:23:18 +0000
commit46fd0de8a7da2d59d7e89cc9b07088c46455f2c1 (patch)
treea570c12e6c3cc3f79c53b096f6df03778153f04e /libavcodec
parentd2975f8d4ff826b1f0477b48782927e5439896f8 (diff)
downloadffmpeg-46fd0de8a7da2d59d7e89cc9b07088c46455f2c1.tar.gz
fixing alt_scan for the first frame (variable was reset)
Originally committed as revision 1045 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h263dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 7973548e05..8b3c59b2c0 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -334,7 +334,7 @@ uint64_t time= rdtsc();
s->bitstream_buffer_size=0;
if (!s->context_initialized) {
- if (DCT_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
+ if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
return -1;
}