Alexander Strange wrote:
> diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
> index f3212da..78114f6 100644
> --- a/libavcodec/mpegvideo.c
> +++ b/libavcodec/mpegvideo.c
> @@ -2371,3 +2371,9 @@ void ff_set_qscale(MpegEncContext * s, int qscale)
>      s->y_dc_scale= s->y_dc_scale_table[ qscale ];
>      s->c_dc_scale= s->c_dc_scale_table[ s->chroma_qscale ];
>  }
> +
> +void MPV_report_decode_progress(MpegEncContext *s)
> +{
> +     if (s->pict_type != FF_B_TYPE && !s->partitioned_frame)
> +             ff_report_decode_progress((AVFrame*)s->current_picture_ptr, 
> s->mb_y);
> +}
>   

you should not use tabs

-- 
Benoit Fouet
Purple Labs S.A.
www.purplelabs.com
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to