mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 13:35:13 +00:00
av1_parse: Remove unused getbits instance
This commit is contained in:
parent
dce6cf2c36
commit
9c830f4f65
@ -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)
|
int ff_av1_packet_split(AV1Packet *pkt, const uint8_t *buf, int length, void *logctx)
|
||||||
{
|
{
|
||||||
GetByteContext bc;
|
GetByteContext bc;
|
||||||
int ret, consumed;
|
int consumed;
|
||||||
|
|
||||||
bytestream2_init(&bc, buf, length);
|
bytestream2_init(&bc, buf, length);
|
||||||
pkt->nb_obus = 0;
|
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++;
|
pkt->nb_obus++;
|
||||||
|
|
||||||
ret = init_get_bits(&obu->gb, obu->data, obu->size_bits);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -49,9 +49,6 @@ typedef struct AV1OBU {
|
|||||||
int raw_size;
|
int raw_size;
|
||||||
const uint8_t *raw_data;
|
const uint8_t *raw_data;
|
||||||
|
|
||||||
/** GetBitContext initialized to the start of the payload */
|
|
||||||
GetBitContext gb;
|
|
||||||
|
|
||||||
int type;
|
int type;
|
||||||
|
|
||||||
int temporal_id;
|
int temporal_id;
|
||||||
|
Loading…
Reference in New Issue
Block a user