Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Unified Diff: media/filters/ffmpeg_demuxer.cc

Issue 155711: Renamed FilterHost::Error() and Pipeline::GetTime() to more appropriate names. (Closed)
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/filters/ffmpeg_audio_decoder.cc ('k') | media/filters/ffmpeg_demuxer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/ffmpeg_demuxer.cc
diff --git a/media/filters/ffmpeg_demuxer.cc b/media/filters/ffmpeg_demuxer.cc
index 8526b4e1917936b6d1e34f9277b971c827857a02..bf595e2cd0cc9c6c948daed1d7931b9effc24ff7 100644
--- a/media/filters/ffmpeg_demuxer.cc
+++ b/media/filters/ffmpeg_demuxer.cc
@@ -313,7 +313,7 @@ void FFmpegDemuxer::InititalizeTask(DataSource* data_source,
FFmpegGlue::get()->RemoveDataSource(data_source);
if (result < 0) {
- host()->Error(DEMUXER_ERROR_COULD_NOT_OPEN);
+ host()->SetError(DEMUXER_ERROR_COULD_NOT_OPEN);
callback->Run();
return;
}
@@ -328,7 +328,7 @@ void FFmpegDemuxer::InititalizeTask(DataSource* data_source,
// Fully initialize AVFormatContext by parsing the stream a little.
result = av_find_stream_info(format_context_);
if (result < 0) {
- host()->Error(DEMUXER_ERROR_COULD_NOT_PARSE);
+ host()->SetError(DEMUXER_ERROR_COULD_NOT_PARSE);
callback->Run();
return;
}
@@ -351,7 +351,7 @@ void FFmpegDemuxer::InititalizeTask(DataSource* data_source,
}
}
if (streams_.empty()) {
- host()->Error(DEMUXER_ERROR_NO_SUPPORTED_STREAMS);
+ host()->SetError(DEMUXER_ERROR_NO_SUPPORTED_STREAMS);
callback->Run();
return;
}
« no previous file with comments | « media/filters/ffmpeg_audio_decoder.cc ('k') | media/filters/ffmpeg_demuxer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698