summaryrefslogtreecommitdiff
path: root/fftools/ffmpeg_mux.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-10-25 22:37:13 +0200
committerAnton Khirnov <anton@khirnov.net>2022-11-17 10:52:58 +0100
commit0fb7d111e891b7256a44227e193686c41ae6a986 (patch)
tree28e391caf1bd34a0d7e30d3439e79eefd620596c /fftools/ffmpeg_mux.c
parent25620b69e0d3b4098add3242872f05cb0e641be5 (diff)
fftools/ffmpeg: move OutputStream.max_frames to MuxStream
It no longer needs to be visible outside of the muxing code.
Diffstat (limited to 'fftools/ffmpeg_mux.c')
-rw-r--r--fftools/ffmpeg_mux.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fftools/ffmpeg_mux.c b/fftools/ffmpeg_mux.c
index 778626e20f..ad04f5049d 100644
--- a/fftools/ffmpeg_mux.c
+++ b/fftools/ffmpeg_mux.c
@@ -45,11 +45,6 @@ static Muxer *mux_from_of(OutputFile *of)
return (Muxer*)of;
}
-static MuxStream *ms_from_ost(OutputStream *ost)
-{
- return (MuxStream*)ost;
-}
-
static int64_t filesize(AVIOContext *pb)
{
int64_t ret = -1;