diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-14 16:28:51 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-18 02:55:13 +0200 |
commit | aa8e3f0342d738c2f10d561dc9ab50c2add8dc14 (patch) | |
tree | 483071f1742f089f5f3614eb78b308339c5058ac | |
parent | 7b2ed4d54ad7adaa79a226474de62ddc0a1a5c06 (diff) | |
download | ffmpeg-aa8e3f0342d738c2f10d561dc9ab50c2add8dc14.tar.gz |
avcodec/pthread_frame: Remove unused enum values
No longer used since the removal of FF_API_THREAD_SAFE_CALLBACKS
in e0786a8eeb9e7c8feb057e83f284491f0a87e463.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/pthread_frame.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/pthread_frame.c b/libavcodec/pthread_frame.c index 6b792bfc39..58a9101888 100644 --- a/libavcodec/pthread_frame.c +++ b/libavcodec/pthread_frame.c @@ -55,16 +55,6 @@ enum { STATE_INPUT_READY, ///< Set before the codec has called ff_thread_finish_setup(). STATE_SETTING_UP, - /** - * Set when the codec calls get_buffer(). - * State is returned to STATE_SETTING_UP afterwards. - */ - STATE_GET_BUFFER, - /** - * Set when the codec calls get_format(). - * State is returned to STATE_SETTING_UP afterwards. - */ - STATE_GET_FORMAT, ///< Set after the codec has called ff_thread_finish_setup(). STATE_SETUP_FINISHED, }; |