1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

oggenc: Change error log text. An error here does not necessarily mean

corrupted data.

Originally committed as revision 19248 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2009-06-21 20:18:29 +00:00
parent 3f2eadf4fe
commit 87b4dd3b96

View File

@ -152,7 +152,7 @@ static int ogg_write_header(AVFormatContext *s)
int err = ogg_build_flac_headers(st->codec, oggstream,
st->codec->flags & CODEC_FLAG_BITEXACT);
if (err) {
av_log(s, AV_LOG_ERROR, "Extradata corrupted\n");
av_log(s, AV_LOG_ERROR, "Error writing FLAC headers\n");
av_freep(&st->priv_data);
return err;
}