[FFmpeg-devel] [PATCH] nellymoser: unknown tag size warning

Alex Beregszaszi alex
Wed Nov 14 16:32:23 CET 2007


On Wed, 2007-11-14 at 16:11 +0100, Benjamin Larsson wrote:
> Alex Beregszaszi wrote:
> > Hi,
> >
> > attached patch changes the unknown tag size warning (which skips the
> > frame) to ERROR instead DEBUG, thus it will be noticed by the user.
> >
> > --
> > Alex
> >
> >   
> > ------------------------------------------------------------------------
> >
> > Index: nellymoserdec.c
> > ===================================================================
> > --- nellymoserdec.c	(revision 11019)
> > +++ nellymoserdec.c	(working copy)
> > @@ -380,7 +380,7 @@
> >          case 256:   // 22050Hz
> >              blocks = 4; break;
> >          default:
> > -            av_log(avctx, AV_LOG_DEBUG, "Tag size %d unknown, report sample!\n", buf_size);
> > +            av_log(avctx, AV_LOG_ERROR, "Tag size %d unknown, report sample!\n", buf_size);
> >              return buf_size;
> >      }
> >  
> >   
> 
> My bad, patch ok.

Committed.

--
Alex






More information about the ffmpeg-devel mailing list