Home
last modified time | relevance | path

Searched refs:RTCVideoDecoder (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/content/renderer/media/
Drtc_video_decoder_unittest.cc70 RTCVideoDecoder::Create(codec_type, mock_gpu_factories_); in CreateDecoder()
84 base::Bind(&RTCVideoDecoder::NotifyResetDone, in NotifyResetDone()
99 scoped_ptr<RTCVideoDecoder> rtc_decoder_;
112 scoped_ptr<RTCVideoDecoder> null_rtc_decoder( in TEST_F()
113 RTCVideoDecoder::Create(webrtc::kVideoCodecI420, mock_gpu_factories_)); in TEST_F()
182 EXPECT_TRUE(rtc_decoder_->IsBufferAfterReset(0, RTCVideoDecoder::ID_INVALID)); in TEST_F()
183 EXPECT_TRUE(rtc_decoder_->IsBufferAfterReset(RTCVideoDecoder::ID_LAST, in TEST_F()
184 RTCVideoDecoder::ID_INVALID)); in TEST_F()
185 EXPECT_FALSE(rtc_decoder_->IsBufferAfterReset(RTCVideoDecoder::ID_HALF - 2, in TEST_F()
186 RTCVideoDecoder::ID_HALF + 2)); in TEST_F()
[all …]
Drtc_video_decoder.cc27 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) in SHMBuffer()
60 RTCVideoDecoder::SHMBuffer::~SHMBuffer() { shm->Close(); } in ~SHMBuffer()
62 RTCVideoDecoder::BufferData::BufferData(int32 bitstream_buffer_id, in BufferData()
69 RTCVideoDecoder::BufferData::BufferData() {} in BufferData()
71 RTCVideoDecoder::BufferData::~BufferData() {} in ~BufferData()
73 RTCVideoDecoder::RTCVideoDecoder( in RTCVideoDecoder() function in content::RTCVideoDecoder
[all …]
Drtc_video_decoder.h44 class CONTENT_EXPORT RTCVideoDecoder
48 virtual ~RTCVideoDecoder(); in NON_EXPORTED_BASE()
52 static scoped_ptr<RTCVideoDecoder> Create( in NON_EXPORTED_BASE()
105 RTCVideoDecoder( in NON_EXPORTED_BASE()
145 base::WeakPtr<RTCVideoDecoder> decoder, in NON_EXPORTED_BASE()
263 base::WeakPtrFactory<RTCVideoDecoder> weak_factory_; in NON_EXPORTED_BASE()
265 DISALLOW_COPY_AND_ASSIGN(RTCVideoDecoder); in NON_EXPORTED_BASE()
Drtc_video_decoder_factory.cc27 scoped_ptr<RTCVideoDecoder> decoder = in CreateVideoDecoder()
28 RTCVideoDecoder::Create(type, gpu_factories_); in CreateVideoDecoder()