[FFmpeg-cvslog] avcodec/h2645_parse: Remove H2645NAL.rbsp_buffer

Andreas Rheinhardt git at videolan.org
Thu Dec 16 04:01:41 EET 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sat Dec 11 15:24:00 2021 +0100| [c22a9ece2e7d823507b81e7fe7789545f01e7c88] | committer: Andreas Rheinhardt

avcodec/h2645_parse: Remove H2645NAL.rbsp_buffer

Forgotten in 03b82b3ab9883cef017e513c7d0b3b986b3b3e7b.

(Moving data to the front is only done to make existing
initializations like H2645NAL nal = { NULL } not emit int->pointer
conversion warnings.)

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

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

 libavcodec/h2645_parse.c | 3 +--
 libavcodec/h2645_parse.h | 4 +---
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/libavcodec/h2645_parse.c b/libavcodec/h2645_parse.c
index 6fbe97ad4a..03780680c6 100644
--- a/libavcodec/h2645_parse.c
+++ b/libavcodec/h2645_parse.c
@@ -92,8 +92,7 @@ int ff_h2645_extract_rbsp(const uint8_t *src, int length,
     } else if (i > length)
         i = length;
 
-    nal->rbsp_buffer = &rbsp->rbsp_buffer[rbsp->rbsp_buffer_size];
-    dst = nal->rbsp_buffer;
+    dst = &rbsp->rbsp_buffer[rbsp->rbsp_buffer_size];
 
     memcpy(dst, src, i);
     si = di = i;
diff --git a/libavcodec/h2645_parse.h b/libavcodec/h2645_parse.h
index 20a9d355f2..3a13ba248a 100644
--- a/libavcodec/h2645_parse.h
+++ b/libavcodec/h2645_parse.h
@@ -32,10 +32,8 @@
 #define MAX_MBPAIR_SIZE (256*1024) // a tighter bound could be calculated if someone cares about a few bytes
 
 typedef struct H2645NAL {
-    uint8_t *rbsp_buffer;
-
-    int size;
     const uint8_t *data;
+    int size;
 
     /**
      * Size, in bits, of just the data, excluding the stop bit and any trailing



More information about the ffmpeg-cvslog mailing list