diff options
author | Måns Rullgård <mans@mansr.com> | 2006-09-27 22:12:08 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-09-27 22:12:08 +0000 |
commit | bca99b47bf808fcca728404c50a291da9f98b270 (patch) | |
tree | 2c1c84bc95f0d609522a65665cfe5d01f7282522 /libavcodec/mpegvideo.c | |
parent | be0d52ab7875f91d783feba3ea12f338dfd08d45 (diff) | |
download | ffmpeg-bca99b47bf808fcca728404c50a291da9f98b270.tar.gz |
return 0 from encode_picture() and estimate_qp() on success
Originally committed as revision 6363 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index c8fb2a4a18..06e444747f 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -5494,6 +5494,7 @@ static int estimate_qp(MpegEncContext *s, int dry_run){ s->lambda= s->current_picture.quality; //printf("%d %d\n", s->avctx->global_quality, s->current_picture.quality); update_qscale(s); + return 0; } static int encode_picture(MpegEncContext *s, int picture_number) @@ -5709,6 +5710,7 @@ static int encode_picture(MpegEncContext *s, int picture_number) merge_context_after_encode(s, s->thread_context[i]); } emms_c(); + return 0; } static void denoise_dct_c(MpegEncContext *s, DCTELEM *block){ |