Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-25 21:39:58 +0300
committerJames Almer <jamrial@gmail.com>2021-04-27 16:43:03 +0300
commitf581433e8b70ca015b55c14bf11aadfd652df6b1 (patch)
tree94965fe876892bf40a9ddb30fffdb66e408f4a14 /libavcodec/utils.c
parente8fdb0db16c5ca8ad382b20874b4a454be6b79ae (diff)
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.c11
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) +