mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/mqcenc: Remove unused ff_mqc_length
Unused since 4624656797b667eb6405186682eb04e74dfd90fd. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
4c8d9b1d09
commit
f729dee615
@ -54,9 +54,6 @@ void ff_mqc_initenc(MqcState *mqc, uint8_t *bp);
|
||||
/** code bit d with context cx */
|
||||
void ff_mqc_encode(MqcState *mqc, uint8_t *cxstate, int d);
|
||||
|
||||
/** number of encoded bytes */
|
||||
int ff_mqc_length(MqcState *mqc);
|
||||
|
||||
/** flush the encoder [returns number of bytes encoded] */
|
||||
int ff_mqc_flush(MqcState *mqc);
|
||||
int ff_mqc_flush_to(MqcState *mqc, uint8_t *dst, int *dst_len);
|
||||
|
@ -102,11 +102,6 @@ void ff_mqc_encode(MqcState *mqc, uint8_t *cxstate, int d)
|
||||
}
|
||||
}
|
||||
|
||||
int ff_mqc_length(MqcState *mqc)
|
||||
{
|
||||
return mqc->bp - mqc->bpstart;
|
||||
}
|
||||
|
||||
int ff_mqc_flush(MqcState *mqc)
|
||||
{
|
||||
setbits(mqc);
|
||||
|
Loading…
x
Reference in New Issue
Block a user