diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-07-30 16:16:43 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-07-30 16:16:43 +0000 |
commit | 189230ad678de95ee5940cabd7fd579102f1d0f6 (patch) | |
tree | adcb8138aafbdfd9dfa284c5d64c06272527468e /libavdevice/vfwcap.c | |
parent | 7a4a64e7ab654018facd0fd82624bf8c1da0b673 (diff) | |
download | ffmpeg-189230ad678de95ee5940cabd7fd579102f1d0f6.tar.gz |
vfwcap: Update error message:
- Verbose debug information is at max -v 9 now;
- Add an empty space for readability.
Originally committed as revision 19541 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice/vfwcap.c')
-rw-r--r-- | libavdevice/vfwcap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavdevice/vfwcap.c b/libavdevice/vfwcap.c index 4b6f73bc47..34beac4e90 100644 --- a/libavdevice/vfwcap.c +++ b/libavdevice/vfwcap.c @@ -327,8 +327,8 @@ static int vfw_read_header(AVFormatContext *s, AVFormatParameters *ap) av_set_pts_info(st, 32, 1, 1000); if(codec->pix_fmt == -1) { - av_log(s, AV_LOG_ERROR, "Unknown compression type." - "Please report verbose (-v 99) debug information.\n"); + av_log(s, AV_LOG_ERROR, "Unknown compression type. " + "Please report verbose (-v 9) debug information.\n"); vfw_read_close(s); return AVERROR_PATCHWELCOME; } |