diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-03-08 17:37:04 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-03-30 17:19:13 +0200 |
commit | 061dc20351bf3b8a237216d2b39d3a3b736d1916 (patch) | |
tree | 20fe9cd3e3481256b1c23ae73ff6014d378ee5cd /libavcodec/h264.h | |
parent | 69a638019fc0db4c2b75b36ef45d0acb6d2e9628 (diff) | |
download | ffmpeg-061dc20351bf3b8a237216d2b39d3a3b736d1916.tar.gz |
h264: Add missing ff_ prefix to internally visible h264_init_dequant_tables()
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index a7b1d58e3b..796d5d581d 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -829,7 +829,7 @@ int ff_h264_decode_mb_cabac(const H264Context *h, H264SliceContext *sl); void ff_h264_init_cabac_states(const H264Context *h, H264SliceContext *sl); -void h264_init_dequant_tables(H264Context *h); +void ff_h264_init_dequant_tables(H264Context *h); void ff_h264_direct_dist_scale_factor(const H264Context *const h, H264SliceContext *sl); void ff_h264_direct_ref_list_init(const H264Context *const h, H264SliceContext *sl); |