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

Unified Diff: media/cast/receiver/audio_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/audio_decoder.h
diff --git a/media/cast/receiver/audio_decoder.h b/media/cast/receiver/audio_decoder.h
index 0b13eae6a8f47cfc3e19030c66e24df7300ba071..a68b6fb9e579f021f9d48a6b2157d516834044e3 100644
--- a/media/cast/receiver/audio_decoder.h
+++ b/media/cast/receiver/audio_decoder.h
@@ -32,10 +32,10 @@ class AudioDecoder {
Codec codec);
virtual ~AudioDecoder();
- // Returns STATUS_AUDIO_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