[FFmpeg-cvslog] mov: Support prores with multiple stsd

compn tempn at mi.rr.com
Thu Jul 14 22:26:09 CEST 2016


On Wed, 13 Jul 2016 17:06:43 +0200 (CEST)
git at videolan.org (Vittorio Giovara) wrote:

> ffmpeg | branch: master | Vittorio Giovara
> <vittorio.giovara at gmail.com> | Thu Jun  9 18:55:19 2016 -0400|
> [846a3e78a535f05ee61bb23a160f3378f041f751] | committer: Vittorio
> Giovara
> 
> mov: Support prores with multiple stsd
> 
> This function needs to return false, or data in the additional tables
> will be skipped, and the decoder will not be able to decode frames
> associated with them.
> 
> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=846a3e78a535f05ee61bb23a160f3378f041f751
> ---
> 
>  libavformat/mov.c |    2 ++

> +          // prores is allowed to have differing data format and
> codec tag
> +          codec_tag != AV_RL32("apcn") && codec_tag !=
> AV_RL32("apch") && (c->fc->video_codec_id ? video_codec_id !=

arent there more than just apch / apcn isom tags?

libavformat/isom.c lists a few:

{ AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'h') }, /* Apple ProRes 422 High Quality */
{ AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'n') }, /* Apple ProRes 422 Standard Definition */
    { AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 's') }, /* Apple ProRes 422 LT */
    { AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'o') }, /* Apple ProRes 422 Proxy */
    { AV_CODEC_ID_PRORES, MKTAG('a', 'p', '4', 'h') }, /* Apple ProRes 4444 */
    { AV_CODEC_ID_PRORES, MKTAG('a', 'p', '4', 'x') }, /* Apple ProRes 4444 XQ */


shouldnt these other 4 tags also be added?

-compn


More information about the ffmpeg-cvslog mailing list