This source file includes following definitions.
- GetDecodeOutput
- HasAlpha
- NeedsBitstreamConversion
- CanReadWithoutStalling
#include "media/base/video_decoder.h"
#include "media/base/video_frame.h"
namespace media {
VideoDecoder::VideoDecoder() {}
VideoDecoder::~VideoDecoder() {}
scoped_refptr<VideoFrame> VideoDecoder::GetDecodeOutput() {
return NULL;
}
bool VideoDecoder::HasAlpha() const {
return false;
}
bool VideoDecoder::NeedsBitstreamConversion() const {
return false;
}
bool VideoDecoder::CanReadWithoutStalling() const {
return true;
}
}