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
path: root/doc
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-06-26 02:03:15 +0400
committerStefano Sabatini <stefasab@gmail.com>2013-06-27 01:21:06 +0400
commit3aa57e1582afd1ac5f45dfede1c774d44bd011c7 (patch)
tree00a0813e823e394afc44af93fbd9f2591e65e5b7 /doc
parentff995e2b6f254f9c736cccdd4988296617ef0fe6 (diff)
examples/muxing: remove useless instruction
Simpler and less confusing.
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/muxing.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c
index 303064a82f..d1a290eae4 100644
--- a/doc/examples/muxing.c
+++ b/doc/examples/muxing.c
@@ -78,7 +78,6 @@ static AVStream *add_stream(AVFormatContext *oc, AVCodec **codec,
switch ((*codec)->type) {
case AVMEDIA_TYPE_AUDIO:
- st->id = 1;
c->sample_fmt = AV_SAMPLE_FMT_S16;
c->bit_rate = 64000;
c->sample_rate = 44100;