From 67dfaca7ac3ec56cc4ab3c7f9f60ab3b7c43a0db Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Wed, 14 Jun 2017 12:10:32 -0700 Subject: muxavformat: override h.265 'hev1' with 'hvc1' (#782) This provides compatibility with apple software --- libhb/muxavformat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libhb') diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 2982ab7d3..f628b9628 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -331,7 +331,8 @@ static int avformatInit( hb_mux_object_t * m ) case HB_VCODEC_X265_16BIT: case HB_VCODEC_QSV_H265: case HB_VCODEC_QSV_H265_10BIT: - track->st->codecpar->codec_id = AV_CODEC_ID_HEVC; + track->st->codecpar->codec_id = AV_CODEC_ID_HEVC; + track->st->codecpar->codec_tag = MKTAG('h','v','c','1'); if (job->config.h265.headers_length > 0) { -- cgit v1.2.3