summaryrefslogtreecommitdiff
path: root/libavcodec/rtjpeg.h
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-15 13:55:19 +0200
committerMartin Storsjö <martin@martin.st>2012-02-15 22:07:20 +0200
commit0ca1bdb37d3597f67b8547c262aaa5b82d4e563e (patch)
tree62464b25179539dbaacc0301d11bf21d2c79bba3 /libavcodec/rtjpeg.h
parent6c28d657548ae6f3289c664700eeadabc537b869 (diff)
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.h4
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 */