Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/examples/muxing.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c
index 78a079ec41..22bbeca136 100644
--- a/doc/examples/muxing.c
+++ b/doc/examples/muxing.c
@@ -73,8 +73,7 @@ static AVStream *add_audio_stream(AVFormatContext *oc, AVCodec **codec,
fprintf(stderr, "Could not allocate stream\n");
exit(1);
}
- st->id = 1;
-
+ st->id = oc->nb_streams-1;
c = st->codec;
/* put sample parameters */
@@ -208,7 +207,7 @@ static AVStream *add_video_stream(AVFormatContext *oc, AVCodec **codec,
fprintf(stderr, "Could not alloc stream\n");
exit(1);
}
-
+ st->id = oc->nb_streams-1;
c = st->codec;
avcodec_get_context_defaults3(c, *codec);