summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-18 00:59:58 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-04-18 02:20:50 +0200
commitedbb9b5e8fe580192a3fada6d2df8bd0f572e399 (patch)
treeac723b8d0c04a067b42a566cbe25a2dcf294b15f
parent80fa48a413a066a87e1a5683d248ce921a444292 (diff)
avformat/utils: Add HEVC to unreliable_tb()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 15aaa700cf..ef8a65ff4a 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2844,6 +2844,7 @@ static int tb_unreliable(AVCodecContext *c)
c->codec_tag == AV_RL32("mp4v") ||
c->codec_id == AV_CODEC_ID_MPEG2VIDEO ||
c->codec_id == AV_CODEC_ID_GIF ||
+ c->codec_id == AV_CODEC_ID_HEVC ||
c->codec_id == AV_CODEC_ID_H264)
return 1;
return 0;