mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-23 15:26:57 +00:00
avcodec/mjpegenc: make escape_FF() non static
This will be used by ljpeg Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f2d8e3c031
commit
9fcd58ab26
@ -324,7 +324,7 @@ end:
|
||||
s->thread_context[i]->esc_pos = 0;
|
||||
}
|
||||
|
||||
static void escape_FF(PutBitContext *pb, int start)
|
||||
void ff_mjpeg_escape_FF(PutBitContext *pb, int start)
|
||||
{
|
||||
int size = put_bits_count(pb) - start * 8;
|
||||
int i, ff_count;
|
||||
@ -385,7 +385,7 @@ void ff_mjpeg_encode_stuffing(MpegEncContext *s)
|
||||
if(length) put_bits(pbc, length, (1<<length)-1);
|
||||
|
||||
flush_put_bits(&s->pb);
|
||||
escape_FF(&s->pb, s->esc_pos);
|
||||
ff_mjpeg_escape_FF(&s->pb, s->esc_pos);
|
||||
|
||||
if((s->avctx->active_thread_type & FF_THREAD_SLICE) && mb_y < s->mb_height)
|
||||
put_marker(pbc, RST0 + (mb_y&7));
|
||||
|
@ -55,6 +55,7 @@ void ff_mjpeg_encode_picture_header(AVCodecContext *avctx, PutBitContext *pb,
|
||||
ScanTable *intra_scantable,
|
||||
uint16_t intra_matrix[64]);
|
||||
void ff_mjpeg_encode_picture_trailer(PutBitContext *pb, int header_bits);
|
||||
void ff_mjpeg_escape_FF(PutBitContext *pb, int start);
|
||||
void ff_mjpeg_encode_stuffing(MpegEncContext *s);
|
||||
void ff_mjpeg_encode_dc(PutBitContext *pb, int val,
|
||||
uint8_t *huff_size, uint16_t *huff_code);
|
||||
|
Loading…
Reference in New Issue
Block a user