[FFmpeg-cvslog] r12509 - trunk/libavcodec/mpegaudiodec.c

Baptiste Coudurier baptiste.coudurier
Thu Mar 20 10:52:06 CET 2008


bcoudurier wrote:
> Author: bcoudurier
> Date: Thu Mar 20 10:38:55 2008
> New Revision: 12509
> 
> Log:
> omg, fix compilation
> 
> Modified:
>    trunk/libavcodec/mpegaudiodec.c
> 
> Modified: trunk/libavcodec/mpegaudiodec.c
> ==============================================================================
> --- trunk/libavcodec/mpegaudiodec.c	(original)
> +++ trunk/libavcodec/mpegaudiodec.c	Thu Mar 20 10:38:55 2008
> @@ -2301,15 +2301,15 @@ static int mp_decode_frame(MPADecodeCont
>      dprintf(s->avctx, "frame %d:\n", s->frame_count);
>      switch(s->layer) {
>      case 1:
> -        avctx->frame_size = 384;
> +        s->avctx->frame_size = 384;
>          nb_frames = mp_decode_layer1(s);
>          break;
>      case 2:
> -        avctx->frame_size = 1152;
> +        s->avctx->frame_size = 1152;
>          nb_frames = mp_decode_layer2(s);
>          break;
>      case 3:
> -        avctx->frame_size = s->lsf ? 576 : 1152;
> +        s->avctx->frame_size = s->lsf ? 576 : 1152;
>      default:
>          nb_frames = mp_decode_layer3(s);
>  

I sincerly apologize, I have so many patches pending, I commited a wrong
broken tree. Im deeply sorry.

-- 
Baptiste COUDURIER                              GnuPG Key Id: 0x5C1ABAAA
SMARTJOG SAS                                     http://www.smartjog.com
Key fingerprint                 8D77134D20CC9220201FC5DB0AC9325C5C1ABAAA
Phone: +33 1 49966312




More information about the ffmpeg-cvslog mailing list