diff mbox

[FFmpeg-devel,1/2] Parse VP9 when coming out of MP4.

Message ID 1473378063-964-1-git-send-email-alex.converse@gmail.com
State Accepted
Commit 7b3bc365f9923e30a925f8dece4fddd127a54c5d
Headers show

Commit Message

Alex Converse Sept. 8, 2016, 11:41 p.m. UTC
Fixes Netflix VP9 DASH samples.
---
 libavformat/mov.c | 1 +
 1 file changed, 1 insertion(+)

Comments

James Almer Sept. 9, 2016, 1:50 a.m. UTC | #1
On 9/8/2016 8:41 PM, Alex Converse wrote:
> Fixes Netflix VP9 DASH samples.
> ---
>  libavformat/mov.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/libavformat/mov.c b/libavformat/mov.c
> index a7595c5..6e80b93 100644
> --- a/libavformat/mov.c
> +++ b/libavformat/mov.c
> @@ -2161,6 +2161,7 @@ static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
>      case AV_CODEC_ID_EAC3:
>      case AV_CODEC_ID_MPEG1VIDEO:
>      case AV_CODEC_ID_VC1:
> +    case AV_CODEC_ID_VP9:
>          st->need_parsing = AVSTREAM_PARSE_FULL;
>          break;
>      default:

Already submitted and approved (Just not committed yet).

See https://ffmpeg.org/pipermail/ffmpeg-devel/2016-September/199029.html
Ronald S. Bultje Sept. 9, 2016, 2:24 a.m. UTC | #2
Hi,

On Thu, Sep 8, 2016 at 9:50 PM, James Almer <jamrial@gmail.com> wrote:

> On 9/8/2016 8:41 PM, Alex Converse wrote:
> > Fixes Netflix VP9 DASH samples.
> > ---
> >  libavformat/mov.c | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/libavformat/mov.c b/libavformat/mov.c
> > index a7595c5..6e80b93 100644
> > --- a/libavformat/mov.c
> > +++ b/libavformat/mov.c
> > @@ -2161,6 +2161,7 @@ static int mov_finalize_stsd_codec(MOVContext *c,
> AVIOContext *pb,
> >      case AV_CODEC_ID_EAC3:
> >      case AV_CODEC_ID_MPEG1VIDEO:
> >      case AV_CODEC_ID_VC1:
> > +    case AV_CODEC_ID_VP9:
> >          st->need_parsing = AVSTREAM_PARSE_FULL;
> >          break;
> >      default:
>
> Already submitted and approved (Just not committed yet).
>
> See https://ffmpeg.org/pipermail/ffmpeg-devel/2016-September/199029.html


Pushed now, sorry about that...

Ronald
diff mbox

Patch

diff --git a/libavformat/mov.c b/libavformat/mov.c
index a7595c5..6e80b93 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -2161,6 +2161,7 @@  static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
     case AV_CODEC_ID_EAC3:
     case AV_CODEC_ID_MPEG1VIDEO:
     case AV_CODEC_ID_VC1:
+    case AV_CODEC_ID_VP9:
         st->need_parsing = AVSTREAM_PARSE_FULL;
         break;
     default: