diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-11 16:33:03 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-16 10:34:17 +0200 |
commit | eb97dbb05a990266b04830ea8e179e0428656b98 (patch) | |
tree | 4cff9a5ef1e5d9e93db9822484965a27606e8cd3 /libavformat/movenc.c | |
parent | 2c81d5f4c5f5c4e4ddccdc0b9ab4eaf7aacdeb2c (diff) | |
download | ffmpeg-eb97dbb05a990266b04830ea8e179e0428656b98.tar.gz |
movenc: change AV_LOG_INFO to AV_LOG_WARNING for some warnings
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 185d89f43a..03959106c5 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -711,7 +711,7 @@ static int mov_get_codec_tag(AVFormatContext *s, MOVTrack *track) if (!tag) { // if no mac fcc found, try with Microsoft tags tag = ff_codec_get_tag(ff_codec_bmp_tags, track->enc->codec_id); if (tag) - av_log(s, AV_LOG_INFO, "Warning, using MS style video codec tag, " + av_log(s, AV_LOG_WARNING, "Using MS style video codec tag, " "the file may be unplayable!\n"); } } else if (track->enc->codec_type == AVMEDIA_TYPE_AUDIO) { @@ -720,7 +720,7 @@ static int mov_get_codec_tag(AVFormatContext *s, MOVTrack *track) int ms_tag = ff_codec_get_tag(ff_codec_wav_tags, track->enc->codec_id); if (ms_tag) { tag = MKTAG('m', 's', ((ms_tag >> 8) & 0xff), (ms_tag & 0xff)); - av_log(s, AV_LOG_INFO, "Warning, using MS style audio codec tag, " + av_log(s, AV_LOG_WARNING, "Using MS style audio codec tag, " "the file may be unplayable!\n"); } } |