Re: [FFmpeg-devel] [PATCH 2/2] lavf/mov: Support dref.url box for ISO 14496-12

2020-08-07 Thread myp...@gmail.com
On Fri, Aug 7, 2020 at 10:29 PM Zhao Zhili wrote: > > > > > On Aug 7, 2020, at 9:37 PM, Jun Zhao wrote: > > > > From: Jun Zhao > > > > Enable the dref.url box > > > > Signed-off-by: Jun Zhao > > --- > > libavformat/isom.h | 6 ++ > > libavformat/mov.c | 45 +

Re: [FFmpeg-devel] [PATCH 2/2] lavf/mov: Support dref.url box for ISO 14496-12

2020-08-07 Thread Kieran Kunhya
> > > @@ -4169,6 +4189,11 @@ static int mov_open_dref(MOVContext *c, > AVIOContext **pb, const char *src, MOVDr > > if (!c->fc->io_open(c->fc, pb, filename, AVIO_FLAG_READ, > NULL)) > > return 0; > > } > > +} else if (ref->location) { > > +av_log(c->f

Re: [FFmpeg-devel] [PATCH 2/2] lavf/mov: Support dref.url box for ISO 14496-12

2020-08-07 Thread Zhao Zhili
> On Aug 7, 2020, at 9:37 PM, Jun Zhao wrote: > > From: Jun Zhao > > Enable the dref.url box > > Signed-off-by: Jun Zhao > --- > libavformat/isom.h | 6 ++ > libavformat/mov.c | 45 ++--- > 2 files changed, 44 insertions(+), 7 deletions(-) > > di

[FFmpeg-devel] [PATCH 2/2] lavf/mov: Support dref.url box for ISO 14496-12

2020-08-07 Thread Jun Zhao
From: Jun Zhao Enable the dref.url box Signed-off-by: Jun Zhao --- libavformat/isom.h | 6 ++ libavformat/mov.c | 45 ++--- 2 files changed, 44 insertions(+), 7 deletions(-) diff --git a/libavformat/isom.h b/libavformat/isom.h index 41a9c64..01e2c