summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2023-01-24 22:46:22 +0000
committerMark Thompson <sw@jkqxz.net>2023-05-17 19:38:45 +0000
commit9c830f4f6560227a81df7b96cad8648a1dc66f62 (patch)
tree3e4e73605a9a3dcf82b6b222411ad8e031153d11
parentdce6cf2c368edae76cd78f3cbfedb8187c3cb4b7 (diff)
downloadffmpeg-9c830f4f6560227a81df7b96cad8648a1dc66f62.tar.gz
av1_parse: Remove unused getbits instance
-rw-r--r--libavcodec/av1_parse.c6
-rw-r--r--libavcodec/av1_parse.h3
2 files changed, 1 insertions, 8 deletions
diff --git a/libavcodec/av1_parse.c b/libavcodec/av1_parse.c
index 136ad1a58f..948e8eb62a 100644
--- a/libavcodec/av1_parse.c
+++ b/libavcodec/av1_parse.c
@@ -56,7 +56,7 @@ int ff_av1_extract_obu(AV1OBU *obu, const uint8_t *buf, int length, void *logctx
int ff_av1_packet_split(AV1Packet *pkt, const uint8_t *buf, int length, void *logctx)
{
GetByteContext bc;
- int ret, consumed;
+ int consumed;
bytestream2_init(&bc, buf, length);
pkt->nb_obus = 0;
@@ -94,10 +94,6 @@ int ff_av1_packet_split(AV1Packet *pkt, const uint8_t *buf, int length, void *lo
}
pkt->nb_obus++;
-
- ret = init_get_bits(&obu->gb, obu->data, obu->size_bits);
- if (ret < 0)
- return ret;
}
return 0;
diff --git a/libavcodec/av1_parse.h b/libavcodec/av1_parse.h
index 1f3001d2a5..d0abd7ac7c 100644
--- a/libavcodec/av1_parse.h
+++ b/libavcodec/av1_parse.h
@@ -49,9 +49,6 @@ typedef struct AV1OBU {
int raw_size;
const uint8_t *raw_data;
- /** GetBitContext initialized to the start of the payload */
- GetBitContext gb;
-
int type;
int temporal_id;