You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/mqcenc: Remove unused ff_mqc_length
Unused since 4624656797
.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user