diff options
Diffstat (limited to 'media')
-rw-r--r-- | media/filters/ffmpeg_demuxer.cc | 6 |
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. |