diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 10:10:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 21:06:58 +0200 |
commit | 9f51c682ee83ecf0995648d4574ac09b52bbcb24 (patch) | |
tree | c5976926717940042b4b54cc56b35858914e3fa4 /libavcodec/xsubenc.c | |
parent | 6f89efeaa7eceb3408abb6e593d892ec819177a7 (diff) | |
download | ffmpeg-9f51c682ee83ecf0995648d4574ac09b52bbcb24.tar.gz |
lavc: use avpriv_ prefix for ff_copy_bits and align_put_bits.
They are used in lavf.
Diffstat (limited to 'libavcodec/xsubenc.c')
-rw-r--r-- | libavcodec/xsubenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/xsubenc.c b/libavcodec/xsubenc.c index b33640dd2c..bd66f86501 100644 --- a/libavcodec/xsubenc.c +++ b/libavcodec/xsubenc.c @@ -90,7 +90,7 @@ static int xsub_encode_rle(PutBitContext *pb, const uint8_t *bitmap, if (color != PADDING_COLOR && (PADDING + (w&1))) put_xsub_rle(pb, PADDING + (w&1), PADDING_COLOR); - align_put_bits(pb); + avpriv_align_put_bits(pb); bitmap += linesize; } @@ -194,7 +194,7 @@ static int xsub_encode(AVCodecContext *avctx, unsigned char *buf, // Enforce total height to be be multiple of 2 if (h->rects[0]->h & 1) { put_xsub_rle(&pb, h->rects[0]->w, PADDING_COLOR); - align_put_bits(&pb); + avpriv_align_put_bits(&pb); } flush_put_bits(&pb); |