diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-08-01 23:23:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-08-01 23:23:48 +0000 |
commit | 32b9092155d214367996b88bc7d415bc8621cabf (patch) | |
tree | 5bf8d5c9ff352bb0e3b24d9bbdc883c6c0f547c2 | |
parent | d80e2fa24f54e7e373d14fa056d3f263fccb31cb (diff) | |
download | ffmpeg-32b9092155d214367996b88bc7d415bc8621cabf.tar.gz |
10l found by RĂ©mi Guyomarch <rguyom at pobox dot com>
Originally committed as revision 834 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index ee282efd41..0d83a5633f 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -158,7 +158,7 @@ uint64_t time= rdtsc(); { static FILE *f=NULL; if(!f) f=fopen("rate_qp_cplx.txt", "w"); - fprintf(f, "%d %d %f\n", buf_size, s->qscale, buf_size/(double)s->qscale); + fprintf(f, "%d %d %f\n", buf_size, s->qscale, buf_size*(double)s->qscale); } #endif |