Re: [FFmpeg-devel] [PATCH 03/11] libavformat/mxfdec.c: Report dark metadata keys only when they match no parser at all, not everytime they fail to match one.

2015-10-21 Thread Michael Niedermayer
On Wed, Oct 21, 2015 at 11:31:48PM +0200, Tomas Härdin wrote:
> On Wed, 2015-10-21 at 18:00 +0200, Alexis Ballier wrote:
> > ---
> >  libavformat/mxfdec.c | 8 
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> > 
> > diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
> > index 0ae7ce6..593604e 100644
> > --- a/libavformat/mxfdec.c
> > +++ b/libavformat/mxfdec.c
> > @@ -2767,13 +2767,13 @@ static int mxf_read_header(AVFormatContext *s)
> >  if ((ret = mxf_parse_klv(mxf, klv, metadata->read, 
> > metadata->ctx_size, metadata->type)) < 0)
> >  goto fail;
> >  break;
> > -} else {
> > -av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n",
> > -   UID_ARG(klv.key));
> >  }
> >  }
> > -if (!metadata->read)
> > +if (!metadata->read) {
> > +av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n",
> > +UID_ARG(klv.key));
> >  avio_skip(s->pb, klv.length);
> > +}
> >  }
> >  /* FIXME avoid seek */
> >  if (!essence_offset)  {
> 
> Seems fine

applied

thanks

[...]

-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

No great genius has ever existed without some touch of madness. -- Aristotle


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 03/11] libavformat/mxfdec.c: Report dark metadata keys only when they match no parser at all, not everytime they fail to match one.

2015-10-21 Thread Tomas Härdin
On Wed, 2015-10-21 at 18:00 +0200, Alexis Ballier wrote:
> ---
>  libavformat/mxfdec.c | 8 
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
> index 0ae7ce6..593604e 100644
> --- a/libavformat/mxfdec.c
> +++ b/libavformat/mxfdec.c
> @@ -2767,13 +2767,13 @@ static int mxf_read_header(AVFormatContext *s)
>  if ((ret = mxf_parse_klv(mxf, klv, metadata->read, 
> metadata->ctx_size, metadata->type)) < 0)
>  goto fail;
>  break;
> -} else {
> -av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n",
> -   UID_ARG(klv.key));
>  }
>  }
> -if (!metadata->read)
> +if (!metadata->read) {
> +av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n",
> +UID_ARG(klv.key));
>  avio_skip(s->pb, klv.length);
> +}
>  }
>  /* FIXME avoid seek */
>  if (!essence_offset)  {

Seems fine

/Tomas


signature.asc
Description: This is a digitally signed message part
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


[FFmpeg-devel] [PATCH 03/11] libavformat/mxfdec.c: Report dark metadata keys only when they match no parser at all, not everytime they fail to match one.

2015-10-21 Thread Alexis Ballier
---
 libavformat/mxfdec.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index 0ae7ce6..593604e 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -2767,13 +2767,13 @@ static int mxf_read_header(AVFormatContext *s)
 if ((ret = mxf_parse_klv(mxf, klv, metadata->read, 
metadata->ctx_size, metadata->type)) < 0)
 goto fail;
 break;
-} else {
-av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n",
-   UID_ARG(klv.key));
 }
 }
-if (!metadata->read)
+if (!metadata->read) {
+av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n",
+UID_ARG(klv.key));
 avio_skip(s->pb, klv.length);
+}
 }
 /* FIXME avoid seek */
 if (!essence_offset)  {
-- 
2.6.2

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel