Skip to content
Snippets Groups Projects
Commit 69b36659 authored by dork's avatar dork
Browse files

Fix previous commit not changing %s back to %d

parent 4433c3f1
No related branches found
No related tags found
No related merge requests found
Pipeline #5705 passed
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment