1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-12 23:50:50 +02:00

more explicit message

Originally committed as revision 8243 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2007-03-05 10:04:34 +00:00
parent 63b6d5dfad
commit c544ded699

View File

@ -267,7 +267,7 @@ static int swf_write_header(AVFormatContext *s)
}
audio_enc = enc;
} else {
av_log(enc, AV_LOG_ERROR, "SWF only supports MP3\n");
av_log(enc, AV_LOG_ERROR, "SWF muxer only supports MP3\n");
return -1;
}
} else {
@ -276,7 +276,7 @@ static int swf_write_header(AVFormatContext *s)
enc->codec_id == CODEC_ID_MJPEG ) {
video_enc = enc;
} else {
av_log(enc, AV_LOG_ERROR, "SWF only supports VP6, FLV1 and MJPEG\n");
av_log(enc, AV_LOG_ERROR, "SWF muxer only supports VP6, FLV1 and MJPEG\n");
return -1;
}
}