summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-30 20:54:50 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-30 20:54:50 +0000
commitf7111c982349b18d647aebb1cf74a14c3efc735d (patch)
tree7aff53cc0d7d83e996cdb821193aa9faa28699ac /media
parentaca8afb264cec8bbed3b113178c7475c74af1d01 (diff)
downloadchromium_src-f7111c982349b18d647aebb1cf74a14c3efc735d.zip
chromium_src-f7111c982349b18d647aebb1cf74a14c3efc735d.tar.gz
chromium_src-f7111c982349b18d647aebb1cf74a14c3efc735d.tar.bz2
media::FFmpegDemuxer giving too much errors
NOTIMPLEMENTED() is reached when performing layout tests. It is changed to LOG(INFO) so messages go to stderr and won't affect layout tests. BUG=13447 Review URL: http://codereview.chromium.org/242078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27655 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r--media/filters/ffmpeg_demuxer.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/media/filters/ffmpeg_demuxer.cc b/media/filters/ffmpeg_demuxer.cc
index 4c26a8a..c5372f9 100644
--- a/media/filters/ffmpeg_demuxer.cc
+++ b/media/filters/ffmpeg_demuxer.cc
@@ -445,8 +445,10 @@ void FFmpegDemuxer::SeekTask(base::TimeDelta time, FilterCallback* callback) {
// will attempt to use the lowest-index video stream, if present, followed by
// the lowest-index audio stream.
if (av_seek_frame(format_context_, -1, time.InMicroseconds(), flags) < 0) {
- // TODO(scherkus): signal error.
- NOTIMPLEMENTED();
+ // Use LOG(INFO) instead of NOTIMPLEMENTED() to prevent the message being
+ // captured from stdout and contaminates testing.
+ // TODO(scherkus): Implement this properly and signal error (BUG=23447).
+ LOG(INFO) << "Not implemented";
}
// Notify we're finished seeking.