Commit 9fcd58ab authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mjpegenc: make escape_FF() non static

This will be used by ljpeg
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f2d8e3c0
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment