diff options
author | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2013-10-31 23:51:08 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-02 00:44:54 +0100 |
commit | 38612379bffe371d2e21b876b80c335bb468c2fa (patch) | |
tree | a7d20c2e57ee2ff0a6dc5223cce7239e07764d8a | |
parent | 0610d6e8ae609e2b4b96cc5881e4ee19d763d66d (diff) | |
download | ffmpeg-38612379bffe371d2e21b876b80c335bb468c2fa.tar.gz |
hevc: fix temporal_id(cherry picked from commit 5eac0df49d33bef7f3ffc5efde19839dddb554e8)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/hevc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index 97fedd513c..e88798b3b7 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -459,11 +459,11 @@ static int hls_slice_header(HEVCContext *s) /* 8.3.1 */ if (s->temporal_id == 0 && s->nal_unit_type != NAL_TRAIL_N && - s->nal_unit_type != NAL_TSA_N && - s->nal_unit_type != NAL_STSA_N && - s->nal_unit_type != NAL_TRAIL_N && - s->nal_unit_type != NAL_RADL_N && - s->nal_unit_type != NAL_RADL_R && + s->nal_unit_type != NAL_TSA_N && + s->nal_unit_type != NAL_STSA_N && + s->nal_unit_type != NAL_RADL_N && + s->nal_unit_type != NAL_RADL_R && + s->nal_unit_type != NAL_RASL_N && s->nal_unit_type != NAL_RASL_R) s->pocTid0 = s->poc; |