HomeSort by relevance Sort by last modified time
    Searched defs:VideoDecoder (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/media/base/
video_decoder.cc 11 VideoDecoder::VideoDecoder() {}
13 VideoDecoder::~VideoDecoder() {}
15 bool VideoDecoder::NeedsBitstreamConversion() const {
19 bool VideoDecoder::CanReadWithoutStalling() const {
23 int VideoDecoder::GetMaxDecodeRequests() const {
video_decoder.h 22 class MEDIA_EXPORT VideoDecoder {
24 // Status codes for decode operations on VideoDecoder.
25 // TODO(rileya): Now that both AudioDecoder and VideoDecoder Status enums
34 // Callback for VideoDecoder to return a decoded frame whenever it becomes
43 VideoDecoder();
49 virtual ~VideoDecoder();
54 // Initializes a VideoDecoder with the given |config|, executing the
59 // 1) The VideoDecoder will be reinitialized if it was initialized before.
62 // 3) No VideoDecoder calls should be made before |status_cb| is executed.
93 // Note: No VideoDecoder calls should be made before |closure| is executed
    [all...]
  /external/chromium_org/remoting/codec/
video_decoder.h 21 class VideoDecoder {
25 VideoDecoder() {}
26 virtual ~VideoDecoder() {}
  /external/chromium_org/ppapi/cpp/
video_decoder.h 16 /// This file defines the API to create and use a VideoDecoder resource.
45 class VideoDecoder : public Resource {
47 /// Default constructor for creating an is_null() <code>VideoDecoder</code>
49 VideoDecoder();
51 /// A constructor used to create a <code>VideoDecoder</code> and associate it
55 explicit VideoDecoder(const InstanceHandle& instance);
57 /// The copy constructor for <code>VideoDecoder</code>.
58 /// @param[in] other A reference to a <code>VideoDecoder</code>.
59 VideoDecoder(const VideoDecoder& other)
    [all...]
video_decoder.cc 30 VideoDecoder::VideoDecoder() {
33 VideoDecoder::VideoDecoder(const InstanceHandle& instance) {
40 VideoDecoder::VideoDecoder(const VideoDecoder& other) : Resource(other) {
43 int32_t VideoDecoder::Initialize(const Graphics3D& context,
70 int32_t VideoDecoder::Decode(uint32_t decode_id,
85 int32_t VideoDecoder::GetPicture
    [all...]
  /external/chromium_org/media/cast/receiver/
video_decoder.h 20 class VideoDecoder {
30 VideoDecoder(const scoped_refptr<CastEnvironment>& cast_environment,
32 virtual ~VideoDecoder();
57 DISALLOW_COPY_AND_ASSIGN(VideoDecoder);
video_decoder.cc 29 class VideoDecoder::ImplBase
30 : public base::RefCountedThreadSafe<VideoDecoder::ImplBase> {
92 class VideoDecoder::Vp8Impl : public VideoDecoder::ImplBase {
173 class VideoDecoder::FakeImpl : public VideoDecoder::ImplBase {
215 VideoDecoder::VideoDecoder(
238 VideoDecoder::~VideoDecoder() {}
    [all...]
  /external/chromium_org/ppapi/tests/
test_video_decoder.cc 12 REGISTER_TEST_CASE(VideoDecoder);
33 pp::VideoDecoder video_decoder(instance_);
47 pp::VideoDecoder video_decoder(instance_);
60 pp::VideoDecoder video_decoder(instance_);
  /frameworks/base/media/java/android/media/
DecoderCapabilities.java 31 * The VideoDecoder class represents the type of a video decoder
34 public enum VideoDecoder {
52 * @see android.media.DecoderCapabilities.VideoDecoder
54 public static List<VideoDecoder> getVideoDecoders() {
55 List<VideoDecoder> decoderList = new ArrayList<VideoDecoder>();
58 decoderList.add(VideoDecoder.values()[native_get_video_decoder_type(i)]);
  /external/chromium_org/ppapi/proxy/
ppb_video_decoder_proxy.cc 26 class VideoDecoder : public PPB_VideoDecoder_Shared {
29 explicit VideoDecoder(const HostResource& resource);
30 virtual ~VideoDecoder();
32 static VideoDecoder* Create(const HostResource& resource,
56 DISALLOW_COPY_AND_ASSIGN(VideoDecoder);
59 VideoDecoder::VideoDecoder(const HostResource& decoder)
63 VideoDecoder::~VideoDecoder() {
68 int32_t VideoDecoder::Decode
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/interface/
video_codec_interface.h 83 class VideoDecoder
86 virtual ~VideoDecoder() {};
152 virtual VideoDecoder* Copy() { return NULL; }
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 333 milliseconds