On Sun, Jan 15, 2012 at 01:19:16PM -0600, Daniel Huang wrote:
> On Sat, Jan 14, 2012 at 10:52 AM, Diego Biurrun <[email protected]> wrote:
> > On Sat, Jan 14, 2012 at 04:21:05PM +0100, Diego Biurrun wrote:
> > > On Fri, Jan 13, 2012 at 02:25:15PM -0600, Daniel Huang wrote:
> > > >
> > > > --- a/libavformat/mov.c
> > > > +++ b/libavformat/mov.c
> > > > @@ -731,9 +733,11 @@ static int mov_read_mdhd(MOVContext *c,
> > AVIOContext *pb, MOVAtom atom)
> > > >      version = avio_r8(pb);
> > > > -    if (version > 1)
> > > > -        return -1; /* unsupported */
> > > > -
> > > > +    if (version > 1) {
> > > > +        av_log_ask_for_sample(c, "unsupported version %d\n",
> > > > +                              version);
> > > > +        return AVERROR_PATCHWELCOME; /* unsupported */
> > > > +    }
> > >
> > > The line is short enough, no need to break it.  Also, the comment
> > > is redundant.
> > >
> > > I'll queue the patch with this changed in a moment.
> >
> > This breaks FATE, try
> >
> > make fate-seek-lavf_mxf
> > make fate-seek-lavf_mxf_d10
> >
> > Try backing out some of your changes to mxfdec.c until the failure
> > goes away.
> >
> > Please also fix the small issues I mentioned above in your next patch
> > iteration.
> 
> Problem fixed.

Patch is good, queued, thank you.  Get somebody to close the GCI task.

Next good karma earning task for you: learn interleaved quoting instead
of bottom-posting and snip irrelevant clutter like mailing list footers.

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

Reply via email to