[FFmpeg-soc] [soc]: r501 - eac3/eac3_parser.c

Justin Ruggles justinruggles at bellsouth.net
Sat Jul 21 15:29:25 CEST 2007


bwolowiec wrote:
> Author: bwolowiec
> Date: Sat Jul 21 15:34:30 2007
> New Revision: 501
> 
> Log:
> Fix av_log call
> 
> 
> Modified:
>    eac3/eac3_parser.c
> 
> Modified: eac3/eac3_parser.c
> ==============================================================================
> --- eac3/eac3_parser.c	(original)
> +++ eac3/eac3_parser.c	Sat Jul 21 15:34:30 2007
> @@ -48,7 +48,7 @@ int ff_eac3_parse_bsi(GetBitContext *gbc
>      GET_BITS(s->fscod, gbc, 2);
>      if(s->fscod == 0x3)
>      {
> -        av_log(s, AV_LOG_ERROR, "NOT IMPLEMENTED");
> +        av_log(NULL, AV_LOG_ERROR, "NOT IMPLEMENTED");
>          return -1;

It would be good to include a pointer back to the parent AVCodecContext 
to use for the av_log context.



More information about the FFmpeg-soc mailing list