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

Unified Diff: media/cast/cast_receiver.h

Issue 229503002: Cast: Make castv2 mirroring performance test run again (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 6 years, 8 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/cast/cast_environment.h ('k') | media/cast/test/utility/standalone_cast_environment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/cast_receiver.h
diff --git a/media/cast/cast_receiver.h b/media/cast/cast_receiver.h
index f73665a9b60caaaedd8fe871cab6e31845fe06c6..fa6adace98579a81624722f6f97a98203503dbe8 100644
--- a/media/cast/cast_receiver.h
+++ b/media/cast/cast_receiver.h
@@ -31,8 +31,7 @@ class PacketSender;
// |is_continuous| will be false to indicate the loss of data due to a loss of
// frames (or decoding errors). This allows the client to take steps to smooth
// discontinuities for playback. Note: A NULL pointer can be returned when data
-// is not available (e.g., bad packet or when flushing callbacks during
-// shutdown).
+// is not available (e.g., bad/missing packet).
typedef base::Callback<void(scoped_ptr<AudioBus> audio_bus,
const base::TimeTicks& playout_time,
bool is_continuous)> AudioFrameDecodedCallback;
@@ -45,7 +44,7 @@ typedef base::Callback<void(const scoped_refptr<media::VideoFrame>& video_frame,
// with the frame's corresponding play-out time. The client should examine the
// EncodedXXXFrame::frame_id field to determine whether any frames have been
// dropped (i.e., frame_id should be incrementing by one each time). Note: A
-// NULL pointer can be returned on error/shutdown.
+// NULL pointer can be returned on error.
typedef base::Callback<void(scoped_ptr<transport::EncodedAudioFrame>,
const base::TimeTicks&)> AudioFrameEncodedCallback;
typedef base::Callback<void(scoped_ptr<transport::EncodedVideoFrame>,
« no previous file with comments | « media/cast/cast_environment.h ('k') | media/cast/test/utility/standalone_cast_environment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698