diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-12-05 15:11:06 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2017-03-23 10:09:13 +0100 |
commit | 6dca24cd1d570b806b5a3fdaef9d3c8608942a81 (patch) | |
tree | 34c8ceb10d6b45a4fc6688501a8514af95c2cbcc /libavcodec/utils.c | |
parent | 1146bb3babca3973e88005d267cd06210d6ac075 (diff) | |
download | ffmpeg-6dca24cd1d570b806b5a3fdaef9d3c8608942a81.tar.gz |
lavc: Drop deprecated way of setting codec dimensions
Deprecated in 10/2013.
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 8a481dd025..6cef65083d 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -125,13 +125,6 @@ unsigned avcodec_get_edge_width(void) } #endif -#if FF_API_SET_DIMENSIONS -void avcodec_set_dimensions(AVCodecContext *s, int width, int height) -{ - ff_set_dimensions(s, width, height); -} -#endif - int ff_set_dimensions(AVCodecContext *s, int width, int height) { int ret = av_image_check_size(width, height, 0, s); |