diff options
author | Michel Bardiaux <mbardiaux@peaktime.be> | 2005-02-16 23:56:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-02-16 23:56:51 +0000 |
commit | 3d38fd1cd45946d1b6098523c5073422a4d1a431 (patch) | |
tree | 91fc185628b7e94df8769be2e9372101c62411bb /ffmpeg.c | |
parent | 6118e52ea6e072d1fa126328fc227f290cc8b06f (diff) | |
download | ffmpeg-3d38fd1cd45946d1b6098523c5073422a4d1a431.tar.gz |
better error message patch by (Michel Bardiaux <mbardiaux peaktime be>)
Originally committed as revision 3961 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1725,7 +1725,7 @@ static int av_encode(AVFormatContext **output_files, exit(1); } if (avcodec_open(&ost->st->codec, codec) < 0) { - fprintf(stderr, "Error while opening codec for stream #%d.%d - maybe incorrect parameters such as bit_rate, rate, width or height\n", + fprintf(stderr, "Error while opening codec for output stream #%d.%d - maybe incorrect parameters such as bit_rate, rate, width or height\n", ost->file_index, ost->index); exit(1); } |