Remove unused VideoDecoder methods.
Removing VideoDecoder::Copy() and VideoDecoder::SetCodecConfigParameters(). Also adding override to VP8DecoderImpl. BUG= R=mflodman@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/55409004 Cr-Commit-Position: refs/heads/master@{#9244}
This commit is contained in:
@ -186,11 +186,6 @@ int32_t VCMGenericDecoder::Reset()
|
||||
return _decoder.Reset();
|
||||
}
|
||||
|
||||
int32_t VCMGenericDecoder::SetCodecConfigParameters(const uint8_t* buffer, int32_t size)
|
||||
{
|
||||
return _decoder.SetCodecConfigParameters(buffer, size);
|
||||
}
|
||||
|
||||
int32_t VCMGenericDecoder::RegisterDecodeCompleteCallback(VCMDecodedFrameCallback* callback)
|
||||
{
|
||||
_callback = callback;
|
||||
|
||||
@ -90,15 +90,6 @@ public:
|
||||
*/
|
||||
int32_t Reset();
|
||||
|
||||
/**
|
||||
* Codec configuration data sent out-of-band, i.e. in SIP call setup
|
||||
*
|
||||
* buffer pointer to the configuration data
|
||||
* size the size of the configuration data in bytes
|
||||
*/
|
||||
int32_t SetCodecConfigParameters(const uint8_t* /*buffer*/,
|
||||
int32_t /*size*/);
|
||||
|
||||
/**
|
||||
* Set decode callback. Deregistering while decoding is illegal.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user