diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 13:55:19 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:07:20 +0200 |
commit | 0ca1bdb37d3597f67b8547c262aaa5b82d4e563e (patch) | |
tree | 62464b25179539dbaacc0301d11bf21d2c79bba3 /libavcodec/rtjpeg.h | |
parent | 6c28d657548ae6f3289c664700eeadabc537b869 (diff) | |
download | ffmpeg-0ca1bdb37d3597f67b8547c262aaa5b82d4e563e.tar.gz |
rtjpeg: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/rtjpeg.h')
-rw-r--r-- | libavcodec/rtjpeg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rtjpeg.h b/libavcodec/rtjpeg.h index d537c93ff4..95b59e9c75 100644 --- a/libavcodec/rtjpeg.h +++ b/libavcodec/rtjpeg.h @@ -34,10 +34,10 @@ typedef struct { DECLARE_ALIGNED(16, DCTELEM, block)[64]; } RTJpegContext; -void rtjpeg_decode_init(RTJpegContext *c, DSPContext *dsp, +void ff_rtjpeg_decode_init(RTJpegContext *c, DSPContext *dsp, int width, int height, const uint32_t *lquant, const uint32_t *cquant); -int rtjpeg_decode_frame_yuv420(RTJpegContext *c, AVFrame *f, +int ff_rtjpeg_decode_frame_yuv420(RTJpegContext *c, AVFrame *f, const uint8_t *buf, int buf_size); #endif /* AVCODEC_RTJPEG_H */ |