From 69b36659696b341a759e8998905574f09eab1851 Mon Sep 17 00:00:00 2001 From: dork <62394594+dorian-K@users.noreply.github.com> Date: Wed, 24 Apr 2024 22:44:56 +0200 Subject: [PATCH] Fix previous commit not changing %s back to %d --- transcode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transcode.c b/transcode.c index 1f33526..4835b59 100644 --- a/transcode.c +++ b/transcode.c @@ -77,7 +77,7 @@ static void setup_input_stream(char *stream, AVFormatContext *demux, job_failed("Could not describe channel layout: %s", av_err2str(err));*/ - p = mprintf("time_base=%d/%d:sample_rate=%d:sample_fmt=%d:channel_layout=%s:channels=%d", + p = mprintf("time_base=%d/%d:sample_rate=%d:sample_fmt=%d:channel_layout=%d:channels=%d", demux->streams[idx]->time_base.num, demux->streams[idx]->time_base.den, decs[idx]->sample_rate, decs[idx]->sample_fmt, decs[idx]->channel_layout, decs[idx]->channels); -- GitLab