diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 13:51:57 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:07:14 +0200 |
commit | d1b357d78b62e8560da1cd52326f6f5031a2cc69 (patch) | |
tree | e6e6494b9005802d4fc9eb38571bc1f36799f255 /libavcodec/vp56data.h | |
parent | 27cfdc3e4fcf0ab490cce6bf961af9180b21ac6b (diff) | |
download | ffmpeg-d1b357d78b62e8560da1cd52326f6f5031a2cc69.tar.gz |
vp56: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/vp56data.h')
-rw-r--r-- | libavcodec/vp56data.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/vp56data.h b/libavcodec/vp56data.h index b1f27102ae..39bb36d3eb 100644 --- a/libavcodec/vp56data.h +++ b/libavcodec/vp56data.h @@ -56,14 +56,14 @@ typedef struct { int8_t prob_idx; } VP56Tree; -extern const uint8_t vp56_b2p[]; -extern const uint8_t vp56_b6to4[]; -extern const uint8_t vp56_coeff_parse_table[6][11]; -extern const uint8_t vp56_def_mb_types_stats[3][10][2]; -extern const VP56Tree vp56_pva_tree[]; -extern const VP56Tree vp56_pc_tree[]; -extern const uint8_t vp56_coeff_bias[]; -extern const uint8_t vp56_coeff_bit_length[]; +extern const uint8_t ff_vp56_b2p[]; +extern const uint8_t ff_vp56_b6to4[]; +extern const uint8_t ff_vp56_coeff_parse_table[6][11]; +extern const uint8_t ff_vp56_def_mb_types_stats[3][10][2]; +extern const VP56Tree ff_vp56_pva_tree[]; +extern const VP56Tree ff_vp56_pc_tree[]; +extern const uint8_t ff_vp56_coeff_bias[]; +extern const uint8_t ff_vp56_coeff_bit_length[]; static const VP56Frame vp56_reference_frame[] = { VP56_FRAME_PREVIOUS, /* VP56_MB_INTER_NOVEC_PF */ |