diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-03-23 09:41:05 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-03-28 09:53:56 +0200 |
commit | ecc31f6b086453ab9811dce2ae5ceb6a7c19e4ad (patch) | |
tree | 464ce2f788c348470d80603de4bcf5365aa750ef /libavcodec/h264.h | |
parent | 1877712c586df2261f2806f45388c77592b89d1e (diff) | |
download | ffmpeg-ecc31f6b086453ab9811dce2ae5ceb6a7c19e4ad.tar.gz |
h264: move ff_h264_check_intra[4x4]_pred_mode() to h264_parse
It is shared with svq3.
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 3fe5b9c7e5..e00ce8857f 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -808,19 +808,6 @@ int ff_h264_decode_ref_pic_marking(H264Context *h, GetBitContext *gb, int ff_generate_sliding_window_mmcos(H264Context *h, int first_slice); -/** - * Check if the top & left blocks are available if needed & change the - * dc mode so it only uses the available blocks. - */ -int ff_h264_check_intra4x4_pred_mode(const H264Context *h, H264SliceContext *sl); - -/** - * Check if the top & left blocks are available if needed & change the - * dc mode so it only uses the available blocks. - */ -int ff_h264_check_intra_pred_mode(const H264Context *h, H264SliceContext *sl, - int mode, int is_chroma); - void ff_h264_hl_decode_mb(const H264Context *h, H264SliceContext *sl); int ff_h264_decode_extradata(H264Context *h); int ff_h264_decode_init(AVCodecContext *avctx); |