diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-19 14:24:45 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-03-25 15:56:14 +0100 |
commit | a7da517f6a5c472f46f67dd33bb6b95ccc919923 (patch) | |
tree | 4d81c15ee42203fc381ffba5f763e1e8278723a4 /libavcodec/h264_slice.c | |
parent | f4d581cda3897f66c1dda7586b93f86a591dbbef (diff) | |
download | ffmpeg-a7da517f6a5c472f46f67dd33bb6b95ccc919923.tar.gz |
h264data: Move all data tables from a header to a .c file
Diffstat (limited to 'libavcodec/h264_slice.c')
-rw-r--r-- | libavcodec/h264_slice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c index b44aa3e3a4..408cc48d73 100644 --- a/libavcodec/h264_slice.c +++ b/libavcodec/h264_slice.c @@ -1081,7 +1081,7 @@ int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl) } else sl->slice_type_fixed = 0; - slice_type = golomb_to_pict_type[slice_type]; + slice_type = ff_h264_golomb_to_pict_type[slice_type]; sl->slice_type = slice_type; sl->slice_type_nos = slice_type & 3; |