| Index: remoting/codec/video_decoder.h
|
| diff --git a/remoting/codec/video_decoder.h b/remoting/codec/video_decoder.h
|
| index 70e5723be456123f1b15479d32e9381ec6fe8eea..f1eb650d10c7341ff2d5e4e5ac62a25201448e6f 100644
|
| --- a/remoting/codec/video_decoder.h
|
| +++ b/remoting/codec/video_decoder.h
|
| @@ -17,7 +17,7 @@ namespace remoting {
|
| // outputs frames of data.
|
| //
|
| // TODO(ajwong): Beef up this documentation once the API stablizes.
|
| -class Decoder {
|
| +class VideoDecoder {
|
| public:
|
| // DecodeResult is returned from DecodePacket() and indicates current state
|
| // of the decoder. DECODE_DONE means that last packet for the frame was
|
| @@ -30,8 +30,8 @@ class Decoder {
|
| DECODE_DONE,
|
| };
|
|
|
| - Decoder() {}
|
| - virtual ~Decoder() {}
|
| + VideoDecoder() {}
|
| + virtual ~VideoDecoder() {}
|
|
|
| // Initializes the decoder and sets the output dimensions.
|
| // |screen size| must not be empty.
|
|
|