aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/mux.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-02 12:11:59 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-07 00:30:08 +0200
commit0c6e5f321bf5c4054e8b98232692465b342b42b4 (patch)
tree54f06dd5e2fad39bf95aaae9b74acc4fa6f9e670 /libavformat/mux.h
parent4e633e51da64d35c83ae9391a2734d2fd4ef7877 (diff)
downloadffmpeg-0c6e5f321bf5c4054e8b98232692465b342b42b4.tar.gz
avformat/avformat: Avoid including codec.h, frame.h
AVCodec is only ever used as an incomplete type (i.e. via a pointer to an AVCodec) in avformat.h and it is not really part of the core of avformat.h or libavformat; almost none of our internal users make use of it (and none make use of hwcontext.h, which is implicitly included). So switch to use struct AVCodec, but continue to include codec.h for external users for compatibility. Also, do the same for AVFrame and frame.h, which is implicitly included by codec.h (via lavu/hwcontext.h). Also, remove an unnecessary inclusion of <time.h>. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/mux.h')
-rw-r--r--libavformat/mux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.h b/libavformat/mux.h
index c2de45400c..9de5c2852a 100644
--- a/libavformat/mux.h
+++ b/libavformat/mux.h
@@ -96,7 +96,7 @@ typedef struct FFOutputFormat {
* by setting the pointer to NULL.
*/
int (*write_uncoded_frame)(AVFormatContext *, int stream_index,
- AVFrame **frame, unsigned flags);
+ struct AVFrame **frame, unsigned flags);
/**
* Returns device list with it properties.
* @see avdevice_list_devices() for more details.