diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-02-09 02:56:13 +0000 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-02-09 02:56:13 +0000 |
commit | d164ef658970de4dbfc2374be0e86f3b017981ba (patch) | |
tree | a5a9cc4396bafe8d2941c4031116f9b07a3e390a /libavcodec/mjpegenc_common.h | |
parent | 3aae1eff1263a91086f48ae5162aa28f8f9dc072 (diff) | |
download | ffmpeg-d164ef658970de4dbfc2374be0e86f3b017981ba.tar.gz |
mjpegenc_common: add missing ff_ prefix to init_uni_ac_vlc
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/mjpegenc_common.h')
-rw-r--r-- | libavcodec/mjpegenc_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mjpegenc_common.h b/libavcodec/mjpegenc_common.h index 7d760f8a32..d9a565dfa9 100644 --- a/libavcodec/mjpegenc_common.h +++ b/libavcodec/mjpegenc_common.h @@ -40,6 +40,6 @@ void ff_mjpeg_init_hvsample(AVCodecContext *avctx, int hsample[4], int vsample[4 void ff_mjpeg_encode_dc(PutBitContext *pb, int val, uint8_t *huff_size, uint16_t *huff_code); -av_cold void init_uni_ac_vlc(const uint8_t huff_size_ac[256], uint8_t *uni_ac_vlc_len); +av_cold void ff_init_uni_ac_vlc(const uint8_t huff_size_ac[256], uint8_t *uni_ac_vlc_len); #endif /* AVCODEC_MJPEGENC_COMMON_H */ |