Index: media/cast/video_receiver/codecs/vp8/vp8_decoder.h |
diff --git a/media/cast/video_receiver/codecs/vp8/vp8_decoder.h b/media/cast/video_receiver/codecs/vp8/vp8_decoder.h |
index 511ad37ec961ae9e80a19d33c63b3726dd906b96..2a0dc992f145d69fef84e5892b45edac10fb5774 100644 |
--- a/media/cast/video_receiver/codecs/vp8/vp8_decoder.h |
+++ b/media/cast/video_receiver/codecs/vp8/vp8_decoder.h |
@@ -21,8 +21,7 @@ namespace cast { |
// thread. |
class Vp8Decoder : public base::NonThreadSafe { |
public: |
- Vp8Decoder(int number_of_cores, |
- scoped_refptr<CastEnvironment> cast_environment); |
+ explicit Vp8Decoder(scoped_refptr<CastEnvironment> cast_environment); |
~Vp8Decoder(); |
// Decode frame - The decoded frame will be passed via the callback. |
@@ -35,8 +34,7 @@ class Vp8Decoder : public base::NonThreadSafe { |
private: |
// Initialize the decoder. |
- void InitDecode(int number_of_cores); |
- |
+ void InitDecoder(); |
scoped_ptr<vpx_dec_ctx_t> decoder_; |
scoped_refptr<CastEnvironment> cast_environment_; |
}; |