diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-09 11:37:58 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:26 +0200 |
commit | e96b4a53df101403c54e329abfadad2edddc47c4 (patch) | |
tree | b63e01353bea769c9f8b52138dbdc2b4aec43a71 /libavcodec/huffman.c | |
parent | ddce8953a5056800ec795df2dfd84fc17a11b5fc (diff) | |
download | ffmpeg-e96b4a53df101403c54e329abfadad2edddc47c4.tar.gz |
vlc/rl: Add ff_ prefix to the nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/huffman.c')
-rw-r--r-- | libavcodec/huffman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffman.c b/libavcodec/huffman.c index 4fb6530d39..9446332b7d 100644 --- a/libavcodec/huffman.c +++ b/libavcodec/huffman.c @@ -61,7 +61,7 @@ static int build_huff_tree(VLC *vlc, Node *nodes, int head, int flags) int pos = 0; get_tree_codes(bits, lens, xlat, nodes, head, 0, 0, &pos, no_zero_count); - return init_vlc_sparse(vlc, 9, pos, lens, 2, 2, bits, 4, 4, xlat, 1, 1, 0); + return ff_init_vlc_sparse(vlc, 9, pos, lens, 2, 2, bits, 4, 4, xlat, 1, 1, 0); } |