Browse Source

better error message patch by (Michel Bardiaux <mbardiaux peaktime be>)

Originally committed as revision 3961 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michel Bardiaux Michael Niedermayer 21 years ago
parent
commit
3d38fd1cd4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffmpeg.c

+ 1
- 1
ffmpeg.c View File

@@ -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);
}


Loading…
Cancel
Save