HomeSort by relevance Sort by last modified time
    Searched refs:RTCVideoDecoder (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/content/renderer/media/
rtc_video_decoder_factory.cc 32 scoped_ptr<RTCVideoDecoder> decoder =
33 RTCVideoDecoder::Create(type, gpu_factories_->Clone());
rtc_video_decoder_unittest.cc 51 RTCVideoDecoder::Create(webrtc::kVideoCodecVP8, mock_gpu_factories_);
84 base::Bind(&RTCVideoDecoder::NotifyResetDone,
99 scoped_ptr<RTCVideoDecoder> rtc_decoder_;
111 scoped_ptr<RTCVideoDecoder> null_rtc_decoder(
112 RTCVideoDecoder::Create(webrtc::kVideoCodecI420, mock_gpu_factories_));
171 EXPECT_TRUE(rtc_decoder_->IsBufferAfterReset(0, RTCVideoDecoder::ID_INVALID));
172 EXPECT_TRUE(rtc_decoder_->IsBufferAfterReset(RTCVideoDecoder::ID_LAST,
173 RTCVideoDecoder::ID_INVALID));
174 EXPECT_FALSE(rtc_decoder_->IsBufferAfterReset(RTCVideoDecoder::ID_HALF - 2,
175 RTCVideoDecoder::ID_HALF + 2))
    [all...]
rtc_video_decoder.cc 21 const int32 RTCVideoDecoder::ID_LAST = 0x3FFFFFFF;
22 const int32 RTCVideoDecoder::ID_HALF = 0x20000000;
23 const int32 RTCVideoDecoder::ID_INVALID = -1;
43 class RTCVideoDecoder::SHMBuffer {
51 RTCVideoDecoder::SHMBuffer::SHMBuffer(base::SharedMemory* shm, size_t size)
54 RTCVideoDecoder::SHMBuffer::~SHMBuffer() { shm->Close(); }
56 RTCVideoDecoder::BufferData::BufferData(int32 bitstream_buffer_id,
67 RTCVideoDecoder::BufferData::BufferData() {}
69 RTCVideoDecoder::BufferData::~BufferData() {}
71 RTCVideoDecoder::RTCVideoDecoder
    [all...]
rtc_video_decoder.h 44 class CONTENT_EXPORT RTCVideoDecoder
49 virtual ~RTCVideoDecoder();
51 // Creates a RTCVideoDecoder. Returns NULL if failed. The video decoder will
53 static scoped_ptr<RTCVideoDecoder> Create(
115 RTCVideoDecoder(
197 base::WeakPtrFactory<RTCVideoDecoder> weak_factory_;
198 base::WeakPtr<RTCVideoDecoder> weak_this_;
234 // The state of RTCVideoDecoder. Guarded by |lock_|.
264 DISALLOW_COPY_AND_ASSIGN(RTCVideoDecoder);
  /external/chromium/webkit/glue/
webmediaplayer_impl.cc 376 if (media::RTCVideoDecoder::IsUrlSupported(url.spec())) {
380 media::RTCVideoDecoder* rtc_video_decoder =
381 new media::RTCVideoDecoder(

Completed in 57 milliseconds