avformat/movenc: write stss boxes for xHE-AAC

This is in preparation for a following change.

Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit 23a1c021f2)
release/7.1
James Almer 1 month ago
parent e07d7c75db
commit 33588a3749
  1. 1
      libavformat/movenc.c

@ -3196,6 +3196,7 @@ static int mov_write_stbl_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext
if ((track->par->codec_type == AVMEDIA_TYPE_VIDEO || if ((track->par->codec_type == AVMEDIA_TYPE_VIDEO ||
track->par->codec_id == AV_CODEC_ID_TRUEHD || track->par->codec_id == AV_CODEC_ID_TRUEHD ||
track->par->codec_id == AV_CODEC_ID_MPEGH_3D_AUDIO || track->par->codec_id == AV_CODEC_ID_MPEGH_3D_AUDIO ||
(track->par->codec_id == AV_CODEC_ID_AAC && track->par->profile == AV_PROFILE_AAC_USAC) ||
track->par->codec_tag == MKTAG('r','t','p',' ')) && track->par->codec_tag == MKTAG('r','t','p',' ')) &&
track->has_keyframes && track->has_keyframes < track->entry) track->has_keyframes && track->has_keyframes < track->entry)
mov_write_stss_tag(pb, track, MOV_SYNC_SAMPLE); mov_write_stss_tag(pb, track, MOV_SYNC_SAMPLE);

Loading…
Cancel
Save