diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-27 19:08:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-27 19:08:09 +0100 |
commit | 23a90768a87432ae945a97c7e9e90c53330b9f74 (patch) | |
tree | c4a16cb5c1b067251ad34dd955dd45766fffacfc /libavcodec/v210dec.h | |
parent | b37c3396cd36b13ad147837a07e03e32907da433 (diff) | |
download | ffmpeg-23a90768a87432ae945a97c7e9e90c53330b9f74.tar.gz |
avcodec/v210dec: Add ff prefix to v210_x86_init()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/v210dec.h')
-rw-r--r-- | libavcodec/v210dec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v210dec.h b/libavcodec/v210dec.h index a8db7d6222..533afc435c 100644 --- a/libavcodec/v210dec.h +++ b/libavcodec/v210dec.h @@ -31,6 +31,6 @@ typedef struct { void (*unpack_frame)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width); } V210DecContext; -void v210_x86_init(V210DecContext *s); +void ff_v210_x86_init(V210DecContext *s); #endif /* AVCODEC_V210DEC_H */ |