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

Unified Diff: media/cast/receiver/video_decoder.h

Issue 901833004: [Cast] Repurpose CastInitializationStatus for variable frame size support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes. Created 5 years, 10 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
Index: media/cast/receiver/video_decoder.h
diff --git a/media/cast/receiver/video_decoder.h b/media/cast/receiver/video_decoder.h
index f3d8ca202ea635708aceba2e9ac00255b8a60707..2b6c859c6795cf8ceaa3cbc717f2d1a49040171f 100644
--- a/media/cast/receiver/video_decoder.h
+++ b/media/cast/receiver/video_decoder.h
@@ -31,10 +31,10 @@ class VideoDecoder {
Codec codec);
virtual ~VideoDecoder();
- // Returns STATUS_VIDEO_INITIALIZED if the decoder was successfully
- // constructed from the given FrameReceiverConfig. If this method returns any
- // other value, calls to DecodeFrame() will not succeed.
- CastInitializationStatus InitializationResult() const;
+ // Returns STATUS_INITIALIZED if the decoder was successfully constructed from
+ // the given FrameReceiverConfig. If this method returns any other value,
+ // calls to DecodeFrame() will not succeed.
+ OperationalStatus InitializationResult() const;
// Decode the payload in |encoded_frame| asynchronously. |callback| will be
// invoked on the CastEnvironment::MAIN thread with the result.

Powered by Google App Engine
This is Rietveld 408576698