diff options
author | James Almer <jamrial@gmail.com> | 2020-08-23 14:30:23 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-08-23 14:34:32 -0300 |
commit | 994d2567f13c11422aeb6506b6afca42a900d620 (patch) | |
tree | da01cb9f4d4dd429cb03073a2995051c84181897 /libavcodec/cbs_av1.c | |
parent | e2589ac65010f86fc2e6c3b4419cb1dc62f82d1a (diff) | |
download | ffmpeg-994d2567f13c11422aeb6506b6afca42a900d620.tar.gz |
avcodec/cbs_av1: always store temporal_id and spatial_id in CodedBitstreamAV1Context
Also infer them when not coded in the bitstream.
Reviewed-by: jkqxz
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/cbs_av1.c')
-rw-r--r-- | libavcodec/cbs_av1.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/cbs_av1.c b/libavcodec/cbs_av1.c index 75e9cb78df..72ad18151e 100644 --- a/libavcodec/cbs_av1.c +++ b/libavcodec/cbs_av1.c @@ -920,9 +920,6 @@ static int cbs_av1_read_unit(CodedBitstreamContext *ctx, start_pos = get_bits_count(&gbc); if (obu->header.obu_extension_flag) { - priv->temporal_id = obu->header.temporal_id; - priv->spatial_id = obu->header.spatial_id; - if (obu->header.obu_type != AV1_OBU_SEQUENCE_HEADER && obu->header.obu_type != AV1_OBU_TEMPORAL_DELIMITER && priv->operating_point_idc) { @@ -934,9 +931,6 @@ static int cbs_av1_read_unit(CodedBitstreamContext *ctx, // Decoding will drop this OBU at this operating point. } } - } else { - priv->temporal_id = 0; - priv->spatial_id = 0; } switch (obu->header.obu_type) { |