diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-16 12:12:17 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-19 12:12:56 +0100 |
commit | abbc111067bfa7beafc51aa60f153bba3f4caca6 (patch) | |
tree | 5578c119e101dcb2f541eb29888305ee86866569 /libavformat | |
parent | 6a9830f50370568234e23c28abff8cc4b738ac4b (diff) | |
download | ffmpeg-abbc111067bfa7beafc51aa60f153bba3f4caca6.tar.gz |
avformat/matroskaenc: Redo applying ProRes offset
Add a field to mkv_track that is set to the offset instead
of checking for whether the track is ProRes when writing
the Block. This makes writing the Block independent
of the AVCodecParameters.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/matroskaenc.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 09d2fb2be5..d0a0c31ad6 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -167,6 +167,7 @@ typedef struct mkv_track { unsigned track_num; int track_num_size; int sample_rate; + unsigned offset; int64_t sample_rate_offset; int64_t last_timestamp; int64_t duration; @@ -2451,12 +2452,9 @@ static int mkv_write_block(void *logctx, MatroskaMuxContext *mkv, return err; } - if (CONFIG_MATROSKA_MUXER && - par->codec_id == AV_CODEC_ID_PRORES && size >= 8) { - /* Matroska specification requires to remove the first QuickTime atom - */ - size -= 8; - offset = 8; + if (track->offset <= size) { + size -= track->offset; + offset = track->offset; } side_data = av_packet_get_side_data(pkt, @@ -3117,6 +3115,11 @@ static int mkv_init(struct AVFormatContext *s) (AV_RB24(par->extradata) == 1 || AV_RB32(par->extradata) == 1)) track->reformat = mkv_reformat_h2645; break; + case AV_CODEC_ID_PRORES: + /* Matroska specification requires to remove + * the first QuickTime atom. */ + track->offset = 8; + break; #endif case AV_CODEC_ID_AV1: track->reformat = mkv_reformat_av1; |