diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-14 17:17:06 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-18 02:55:13 +0200 |
commit | 1982113467661947bafce48558df752de4a4faba (patch) | |
tree | c337c56db2b397f86db74c44d12f879cb18d490e /libavcodec/mpegvideo_dec.c | |
parent | bca2651a320def7dbeb6ea4f35f67a7ed6b2da0f (diff) | |
download | ffmpeg-1982113467661947bafce48558df752de4a4faba.tar.gz |
avcodec/threadframe: Move ff_thread_can_start_frame() to thread.h
It does not use ThreadFrames at all, so thread.h is the correct place.
bcb0faeaba60b5d329fafee2e55f28d3c709e7b1 was wrong.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo_dec.c')
-rw-r--r-- | libavcodec/mpegvideo_dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo_dec.c b/libavcodec/mpegvideo_dec.c index 6aa979433c..7aa46a4e25 100644 --- a/libavcodec/mpegvideo_dec.c +++ b/libavcodec/mpegvideo_dec.c @@ -37,6 +37,7 @@ #include "mpegvideo.h" #include "mpegvideodec.h" #include "mpeg4videodec.h" +#include "thread.h" #include "threadframe.h" #include "wmv2dec.h" |