diff options
author | James Almer <jamrial@gmail.com> | 2018-08-16 18:01:44 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-08-17 15:09:02 -0300 |
commit | 8d5604a69aaa5e9ce6e930fcae6bab7e3f016841 (patch) | |
tree | a4dcac0703588c00d2f3972940f3872bb515dfe3 /libavformat/movenc.c | |
parent | 96a7099f3ed57aa6dd8de2e727e25a4508743bd8 (diff) | |
download | ffmpeg-8d5604a69aaa5e9ce6e930fcae6bab7e3f016841.tar.gz |
avformat/av1: update ff_isom_write_av1c() to the latest revision of the spec
This will get ISOBMFF and Matroska up to date with the revised AV1 Codec
Configuration Box spec.
For now keep propagating raw OBUs as extradata until all libavcodec modules
are adapted to handle AV1CodecConfigurationRecord formatted extradata.
Tested-by: Thomas Daede <bztdlinux@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d530f40cab..8ad7026741 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1170,9 +1170,6 @@ static int mov_write_av1c_tag(AVIOContext *pb, MOVTrack *track) avio_wb32(pb, 0); ffio_wfourcc(pb, "av1C"); - avio_w8(pb, 0); /* version */ - avio_wb24(pb, 0); /* flags */ - avio_w8(pb, 0); /* reserved (3), initial_presentation_delay_present (1), initial_presentation_delay_minus_one/reserved (4) */ ff_isom_write_av1c(pb, track->vos_data, track->vos_len); return update_size(pb, pos); } |