diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 22:03:27 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 14:14:57 +0200 |
commit | b9eaf77ed1b3b551f71f90b3fb2624379d0b29c3 (patch) | |
tree | 1a5e05091b18b5b7cf5d96225592389583e83d33 /libavcodec/internal.h | |
parent | b6a680989c2f2428a25bea322ffd2b546474df75 (diff) | |
download | ffmpeg-b9eaf77ed1b3b551f71f90b3fb2624379d0b29c3.tar.gz |
avcodec/internal: Move ff_set_dimensions() to decode.h
Decoder-only, as the dimensions are set by the user when encoding.
Also fixup the other headers a bit while removing unnecessary internal.h
inclusions.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r-- | libavcodec/internal.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 0c1225f98b..823067b7ee 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -217,12 +217,6 @@ int avpriv_h264_has_num_reorder_frames(AVCodecContext *avctx); int avpriv_codec_get_cap_skip_frame_fill_param(const AVCodec *codec); /** - * Check that the provided frame dimensions are valid and set them on the codec - * context. - */ -int ff_set_dimensions(AVCodecContext *s, int width, int height); - -/** * Add or update AV_FRAME_DATA_MATRIXENCODING side data. */ int ff_side_data_update_matrix_encoding(AVFrame *frame, |