diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-10-11 14:24:20 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-10-11 14:24:20 +0200 |
commit | 347363995251a3aec65defadd45f1e053a24cc76 (patch) | |
tree | 61f5863fe5391a0b4b3cf484f74fa664130ebba2 /ffmpeg.c | |
parent | 5174032953dabb3ab2eb3a5c1bf6934b5b79c3c9 (diff) | |
download | ffmpeg-347363995251a3aec65defadd45f1e053a24cc76.tar.gz |
ffmpeg: fix two stream related comments.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -187,10 +187,10 @@ typedef struct InputStream { typedef struct InputFile { AVFormatContext *ctx; int eof_reached; /* true if eof reached */ - int ist_index; /* index of first stream in ist_table */ + int ist_index; /* index of first stream in input_streams */ int buffer_size; /* current total buffer size */ int64_t ts_offset; - int nb_streams; /* number of stream that avconv is aware of; may be different + int nb_streams; /* number of stream that ffmpeg is aware of; may be different from ctx.nb_streams if new streams appear during av_read_frame() */ int rate_emu; } InputFile; |