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

  /external/chromium_org/content/renderer/media/
rtc_video_decoder_unittest.cc 49 RTCVideoDecoder::Create(webrtc::kVideoCodecVP8, mock_gpu_factories_);
80 base::Bind(&RTCVideoDecoder::NotifyResetDone,
95 scoped_ptr<RTCVideoDecoder> rtc_decoder_;
107 scoped_ptr<RTCVideoDecoder> null_rtc_decoder(
108 RTCVideoDecoder::Create(webrtc::kVideoCodecI420, mock_gpu_factories_));
165 EXPECT_TRUE(rtc_decoder_->IsBufferAfterReset(0, RTCVideoDecoder::ID_INVALID));
166 EXPECT_TRUE(rtc_decoder_->IsBufferAfterReset(RTCVideoDecoder::ID_LAST,
167 RTCVideoDecoder::ID_INVALID));
168 EXPECT_FALSE(rtc_decoder_->IsBufferAfterReset(RTCVideoDecoder::ID_HALF - 2,
169 RTCVideoDecoder::ID_HALF + 2))
    [all...]
rtc_video_decoder_factory.cc 27 scoped_ptr<RTCVideoDecoder> decoder =
28 RTCVideoDecoder::Create(type, gpu_factories_);
rtc_video_decoder.cc 27 const int32 RTCVideoDecoder::ID_LAST = 0x3FFFFFFF;
28 const int32 RTCVideoDecoder::ID_HALF = 0x20000000;
29 const int32 RTCVideoDecoder::ID_INVALID = -1;
49 class RTCVideoDecoder::SHMBuffer {
57 RTCVideoDecoder::SHMBuffer::SHMBuffer(base::SharedMemory* shm, size_t size)
60 RTCVideoDecoder::SHMBuffer::~SHMBuffer() { shm->Close(); }
62 RTCVideoDecoder::BufferData::BufferData(int32 bitstream_buffer_id,
73 RTCVideoDecoder::BufferData::BufferData() {}
75 RTCVideoDecoder::BufferData::~BufferData() {}
77 RTCVideoDecoder::RTCVideoDecoder
    [all...]
rtc_video_decoder.h 44 class CONTENT_EXPORT RTCVideoDecoder
48 virtual ~RTCVideoDecoder();
50 // Creates a RTCVideoDecoder. Returns NULL if failed. The video decoder will
52 static scoped_ptr<RTCVideoDecoder> Create(
109 RTCVideoDecoder(
151 base::WeakPtr<RTCVideoDecoder> decoder,
238 // The state of RTCVideoDecoder. Guarded by |lock_|.
270 base::WeakPtrFactory<RTCVideoDecoder> weak_factory_;
272 DISALLOW_COPY_AND_ASSIGN(RTCVideoDecoder);

Completed in 55 milliseconds