aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/h261dec.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-09 11:37:58 +0200
committerAnton Khirnov <anton@khirnov.net>2012-09-29 09:34:19 +0200
commit8c0bbe51561b5185907f51117725d28e7c015c66 (patch)
tree9293efdf9797e63a8964e59dd7c4b72244316c20 /libavcodec/h261dec.c
parent6d1b91324c306568f67d2e22fc87e7e4be147210 (diff)
downloadffmpeg-8c0bbe51561b5185907f51117725d28e7c015c66.tar.gz
vlc/rl: Add ff_ prefix to the nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st> (cherry picked from commit e96b4a53df101403c54e329abfadad2edddc47c4) Conflicts: libavcodec/4xm.c Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/h261dec.c')
-rw-r--r--libavcodec/h261dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c
index 0be0134f01..665cc0da2f 100644
--- a/libavcodec/h261dec.c
+++ b/libavcodec/h261dec.c
@@ -66,7 +66,7 @@ static av_cold void h261_decode_init_vlc(H261Context *h){
INIT_VLC_STATIC(&h261_cbp_vlc, H261_CBP_VLC_BITS, 63,
&h261_cbp_tab[0][1], 2, 1,
&h261_cbp_tab[0][0], 2, 1, 512);
- init_rl(&h261_rl_tcoeff, ff_h261_rl_table_store);
+ ff_init_rl(&h261_rl_tcoeff, ff_h261_rl_table_store);
INIT_VLC_RL(h261_rl_tcoeff, 552);
}
}