diff options
author | James Almer <jamrial@gmail.com> | 2018-10-02 21:08:54 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-11-04 22:06:08 -0300 |
commit | 1c98cf4ddd38400793a4d01b3c3a662beb9e3ba8 (patch) | |
tree | af7c55a9e29dfafbfd6b59a5e0f135af5f61fa14 | |
parent | 63c1e291ef7ba97ce0dc7c0bdd46b81f71a52b9d (diff) | |
download | ffmpeg-1c98cf4ddd38400793a4d01b3c3a662beb9e3ba8.tar.gz |
avformat/ivfenc: use the av1_metadata bsf to insert Temporal Delimiter OBUs if needed
Reviewed-by: Mark Thompson <sw@jkqxz.net>
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit 2d2af23349cae0d84c8ed51c249bfc1e6f2e28a2)
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | libavformat/ivfenc.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -3180,6 +3180,7 @@ image2_alias_pix_demuxer_select="image2_demuxer" image2_brender_pix_demuxer_select="image2_demuxer" ipod_muxer_select="mov_muxer" ismv_muxer_select="mov_muxer" +ivf_muxer_select="av1_metadata" matroska_audio_muxer_select="matroska_muxer" matroska_demuxer_select="iso_media riffdec" matroska_demuxer_suggest="bzlib lzo zlib" diff --git a/libavformat/ivfenc.c b/libavformat/ivfenc.c index 66441a2a43..adf72117e9 100644 --- a/libavformat/ivfenc.c +++ b/libavformat/ivfenc.c @@ -97,6 +97,8 @@ static int ivf_check_bitstream(struct AVFormatContext *s, const AVPacket *pkt) if (st->codecpar->codec_id == AV_CODEC_ID_VP9) ret = ff_stream_add_bitstream_filter(st, "vp9_superframe", NULL); + else if (st->codecpar->codec_id == AV_CODEC_ID_AV1) + ret = ff_stream_add_bitstream_filter(st, "av1_metadata", "td=insert"); return ret; } |