diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-06-26 00:03:15 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-06-26 23:21:06 +0200 |
commit | 3aa57e1582afd1ac5f45dfede1c774d44bd011c7 (patch) | |
tree | 00a0813e823e394afc44af93fbd9f2591e65e5b7 | |
parent | ff995e2b6f254f9c736cccdd4988296617ef0fe6 (diff) | |
download | ffmpeg-3aa57e1582afd1ac5f45dfede1c774d44bd011c7.tar.gz |
examples/muxing: remove useless instruction
Simpler and less confusing.
-rw-r--r-- | doc/examples/muxing.c | 1 |
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; |