summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.h
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-15 13:00:08 +0200
committerMartin Storsjö <martin@martin.st>2012-02-15 22:07:05 +0200
commit5f2c159c0faf406f19f7083137e6ea9d1133e360 (patch)
treead61502c059045ea01968b095287df2d1dbec511 /libavcodec/vc1.h
parent1fec055066b576ecb29806a95a044f5590e287c1 (diff)
vc1: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r--libavcodec/vc1.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h
index 6096077660..f895aad204 100644
--- a/libavcodec/vc1.h
+++ b/libavcodec/vc1.h
@@ -441,11 +441,11 @@ static av_always_inline int vc1_unescape_buffer(const uint8_t *src, int size, ui
* @param gb GetBit context initialized from Codec context extra_data
* @return Status
*/
-int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb);
+int ff_vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb);
-int vc1_decode_entry_point(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb);
+int ff_vc1_decode_entry_point(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb);
-int vc1_parse_frame_header (VC1Context *v, GetBitContext *gb);
-int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext *gb);
+int ff_vc1_parse_frame_header (VC1Context *v, GetBitContext *gb);
+int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext *gb);
#endif /* AVCODEC_VC1_H */