On Tue, Oct 02, 2012 at 04:14:55AM +0200, Luca Barbato wrote:
> 
> --- a/libavformat/nutdec.c
> +++ b/libavformat/nutdec.c
> @@ -219,12 +221,12 @@ static int decode_main_header(NUTContext *nut)
>  
> -            GET_V(nut->header_len[i], tmp > 0 && tmp < 256);
> +            GET_V(nut->header_len[i], tmp > 0 && tmp < 256);;
>              rem -= nut->header_len[i];
> @@ -335,7 +337,7 @@ static int decode_stream_header(NUTContext *nut)
>  
> -    GET_V(stream_id, tmp < s->nb_streams && !nut->stream[tmp].time_base);
> +    GET_V(stream_id, tmp < s->nb_streams && !nut->stream[tmp].time_base);;
>      stc = &nut->stream[stream_id];
> @@ -374,14 +376,14 @@ static int decode_stream_header(NUTContext *nut)
>  
> -    GET_V(stc->time_base_id, tmp < nut->time_base_count);
> -    GET_V(stc->msb_pts_shift, tmp < 16);
> +    GET_V(stc->time_base_id, tmp < nut->time_base_count);;
> +    GET_V(stc->msb_pts_shift, tmp < 16);;
>      stc->max_pts_distance = ffio_read_varlen(bc);
> -    GET_V(stc->decode_delay, tmp < 1000); // sanity limit, raise this if 
> Moore's law is true
> +    GET_V(stc->decode_delay, tmp < 1000);; // sanity limit, raise this if 
> Moore's law is true
>      st->codec->has_b_frames = stc->decode_delay;
>  
> -    GET_V(st->codec->extradata_size, tmp < (1 << 30));
> +    GET_V(st->codec->extradata_size, tmp < (1 << 30));;

Those double semicolons don't look right.

Diego
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to