diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-10-13 15:24:33 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-18 13:57:43 +0200 |
commit | 36ce335d46151b477404caeec38ddbc20c112304 (patch) | |
tree | 76b59d1b537c3a23222a3049756d95b5e768bcc8 /fftools/ffmpeg_mux.h | |
parent | a55ca682e2c74a48bae0c1b76418a8fe0ac97733 (diff) | |
download | ffmpeg-36ce335d46151b477404caeec38ddbc20c112304.tar.gz |
fftools/ffmpeg_mux: inline of_muxer_init() into of_open()
A separate muxer init is no longer necessary, now that of_open() has
access to Muxer.
Diffstat (limited to 'fftools/ffmpeg_mux.h')
-rw-r--r-- | fftools/ffmpeg_mux.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fftools/ffmpeg_mux.h b/fftools/ffmpeg_mux.h index 90ff979ec1..d9c4dce750 100644 --- a/fftools/ffmpeg_mux.h +++ b/fftools/ffmpeg_mux.h @@ -71,4 +71,9 @@ typedef struct Muxer { AVPacket *sq_pkt; } Muxer; +/* whether we want to print an SDP, set in of_open() */ +extern int want_sdp; + +int mux_check_init(Muxer *mux); + #endif /* FFTOOLS_FFMPEG_MUX_H */ |