diff options
author | Vignesh Venkatasubramanian <vigneshv@google.com> | 2013-09-16 13:47:21 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-09-16 23:46:39 +0200 |
commit | bcac6b438e67946199c75c189bba76de6c04dac4 (patch) | |
tree | a9377b14df5d544ce5c9e0cfac89bc290f77fa02 /libavformat/oggparseopus.c | |
parent | b9e7bde6bd84cc86191c94e539070ff0361c553b (diff) | |
download | ffmpeg-bcac6b438e67946199c75c189bba76de6c04dac4.tar.gz |
lavf/oggopus: Fixing a log message
Re-wording a log message that's no longer true and changing its
severity level to debug.
Signed-off by: Vignesh Venkatasubramanian <vigneshv@google.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/oggparseopus.c')
-rw-r--r-- | libavformat/oggparseopus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/oggparseopus.c b/libavformat/oggparseopus.c index 8e538609c3..965951fc45 100644 --- a/libavformat/oggparseopus.c +++ b/libavformat/oggparseopus.c @@ -119,8 +119,8 @@ static int opus_packet(AVFormatContext *avf, int idx) if (skip > 0) { os->pduration = skip < os->pduration ? os->pduration - skip : 1; os->end_trimming = skip; - av_log(avf, AV_LOG_WARNING, - "Last packet must be truncated to %d (unimplemented).\n", + av_log(avf, AV_LOG_DEBUG, + "Last packet was truncated to %d due to end trimming.\n", os->pduration); } } |