[FFmpeg-cvslog] Revert "avcodec/cbs_av1: keep separate reference frame state for reading and writing"

James Almer git at videolan.org
Fri Jul 17 04:13:11 EEST 2020


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Tue Jul  7 22:29:49 2020 -0300| [d11cc743c8e5a60b196d7ec514fb31d558c933ef] | committer: James Almer

Revert "avcodec/cbs_av1: keep separate reference frame state for reading and writing"

This reverts commit 4e2bef6a82b356772a5919c51c9be1530268bd79.
It's no longer needed now that all the bsfs use separate contexts
for reading and writing.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d11cc743c8e5a60b196d7ec514fb31d558c933ef
---

 libavcodec/cbs_av1.c | 4 ----
 libavcodec/cbs_av1.h | 4 +---
 2 files changed, 1 insertion(+), 7 deletions(-)

diff --git a/libavcodec/cbs_av1.c b/libavcodec/cbs_av1.c
index b2a1d2ded1..75e9cb78df 100644
--- a/libavcodec/cbs_av1.c
+++ b/libavcodec/cbs_av1.c
@@ -939,8 +939,6 @@ static int cbs_av1_read_unit(CodedBitstreamContext *ctx,
         priv->spatial_id  = 0;
     }
 
-    priv->ref = (AV1ReferenceFrameState *)&priv->read_ref;
-
     switch (obu->header.obu_type) {
     case AV1_OBU_SEQUENCE_HEADER:
         {
@@ -1084,8 +1082,6 @@ static int cbs_av1_write_obu(CodedBitstreamContext *ctx,
     td = NULL;
     start_pos = put_bits_count(pbc);
 
-    priv->ref = (AV1ReferenceFrameState *)&priv->write_ref;
-
     switch (obu->header.obu_type) {
     case AV1_OBU_SEQUENCE_HEADER:
         {
diff --git a/libavcodec/cbs_av1.h b/libavcodec/cbs_av1.h
index fdc629b00c..f5fed220a5 100644
--- a/libavcodec/cbs_av1.h
+++ b/libavcodec/cbs_av1.h
@@ -441,9 +441,7 @@ typedef struct CodedBitstreamAV1Context {
     int tile_cols;
     int tile_rows;
 
-    AV1ReferenceFrameState *ref;
-    AV1ReferenceFrameState read_ref[AV1_NUM_REF_FRAMES];
-    AV1ReferenceFrameState write_ref[AV1_NUM_REF_FRAMES];
+    AV1ReferenceFrameState ref[AV1_NUM_REF_FRAMES];
 } CodedBitstreamAV1Context;
 
 



More information about the ffmpeg-cvslog mailing list