Hi,

minor style nits:

On Thu, Aug 4, 2011 at 12:36 PM, Dustin Brody <[email protected]> wrote:
> -static void field_end(H264Context *h, int in_setup){
> +static int field_end(H264Context *h, int in_setup){
>     MpegEncContext * const s = &h->s;
>     AVCodecContext * const avctx= s->avctx;
> +    int err=0;

spaces around = please.

> -            ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
> +            if (ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index) < 
> 0 &&
> +               s->avctx->error_recognition >= FF_ER_EXPLODE)
> +             return AVERROR_INVALIDDATA;

Tabs.

Applied with these fixed.

Ronald
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to