]> git.sesse.net Git - ffmpeg/commitdiff
mov: move stsd finalization to an appropriate place
authorSean McGovern <gseanmcg@gmail.com>
Sat, 29 Jul 2017 23:17:16 +0000 (19:17 -0400)
committerSean McGovern <gseanmcg@gmail.com>
Mon, 31 Jul 2017 21:41:01 +0000 (17:41 -0400)
mov_finalize_stsd_codec() parses stream information from the ALAC extradata,
so run it after the extradata processing is completed in mov_read_stsd().

Fixes playback of 96kHz ALAC streams muxed by qaac or the reference alac encoder.

Adapted from an FFmpeg patch by Hendrik Leppkes <h.leppkes@gmail.com>

Bug-Id: 1072

libavformat/mov.c

index 2134bd17436c2b693569c1bc3f581e6e8512195d..6711d8e11ebbe3dbfcf016b29fcabdb37825306e 100644 (file)
@@ -1857,7 +1857,7 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
     if (pb->eof_reached)
         return AVERROR_EOF;
 
-    return mov_finalize_stsd_codec(c, pb, st, sc);
+    return 0;
 }
 
 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
@@ -1913,7 +1913,7 @@ static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
     }
     memcpy(st->codecpar->extradata, sc->extradata[0], sc->extradata_size[0]);
 
-    return 0;
+    return mov_finalize_stsd_codec(c, pb, st, sc);
 fail:
     av_freep(&sc->extradata);
     av_freep(&sc->extradata_size);