diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-03-08 09:06:30 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-08-12 14:42:20 +0200 |
commit | d94cfd49009cf27a4c72c8bf254de6cff8f1d1f4 (patch) | |
tree | 5def14f8e59cec9d59b0b7d1b250e4f23ad2e438 /libavcodec/pthread.c | |
parent | 8d5efc218245c3f0559f48837b3e63e2932525e0 (diff) | |
download | ffmpeg-d94cfd49009cf27a4c72c8bf254de6cff8f1d1f4.tar.gz |
lavc/thread: move generic-layer API to avcodec_internal.h
thread.h currently contains both API for decoder use and functions
internal to lavc generic layer. Move the latter to avcodec_internal.h,
which is a more appropriate place for them.
Diffstat (limited to 'libavcodec/pthread.c')
-rw-r--r-- | libavcodec/pthread.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c index ca84b81391..d32e56de0d 100644 --- a/libavcodec/pthread.c +++ b/libavcodec/pthread.c @@ -32,6 +32,7 @@ #include "libavutil/thread.h" #include "avcodec.h" +#include "avcodec_internal.h" #include "codec_internal.h" #include "pthread_internal.h" #include "thread.h" |