diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-25 19:39:58 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 10:43:03 -0300 |
commit | f581433e8b70ca015b55c14bf11aadfd652df6b1 (patch) | |
tree | 94965fe876892bf40a9ddb30fffdb66e408f4a14 /libavcodec/utils.c | |
parent | e8fdb0db16c5ca8ad382b20874b4a454be6b79ae (diff) | |
download | ffmpeg-f581433e8b70ca015b55c14bf11aadfd652df6b1.tar.gz |
avcodec: Remove remnants of user-visiable HW acceleration API
Disabled and deprecated in 3536a3efb9fde88d34d526a51b1080247326cd6e.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index fda50e3db4..9cee989098 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -845,17 +845,6 @@ const AVCodecHWConfig *avcodec_get_hw_config(const AVCodec *codec, int index) return &codec->hw_configs[index]->public; } -#if FF_API_USER_VISIBLE_AVHWACCEL -AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel) -{ - return NULL; -} - -void av_register_hwaccel(AVHWAccel *hwaccel) -{ -} -#endif - unsigned int avpriv_toupper4(unsigned int x) { return av_toupper(x & 0xFF) + |