Home
last modified time | relevance | path

Searched refs:H264Decoder (Results 1 – 8 of 8) sorted by relevance

/external/v4l2_codec2/vda/
Dh264_decoder.cc20 H264Decoder::H264Accelerator::H264Accelerator() = default;
22 H264Decoder::H264Accelerator::~H264Accelerator() = default;
24 H264Decoder::H264Decoder(H264Accelerator* accelerator) in H264Decoder() function in media::H264Decoder
35 H264Decoder::~H264Decoder() = default;
37 void H264Decoder::Reset() { in Reset()
68 void H264Decoder::PrepareRefPicLists(const H264SliceHeader* slice_hdr) { in PrepareRefPicLists()
73 bool H264Decoder::ModifyReferencePicLists(const H264SliceHeader* slice_hdr, in ModifyReferencePicLists()
93 bool H264Decoder::DecodePicture() { in DecodePicture()
100 bool H264Decoder::InitNonexistingPicture(scoped_refptr<H264Picture> pic, in InitNonexistingPicture()
113 bool H264Decoder::InitCurrPicture(const H264SliceHeader* slice_hdr) { in InitCurrPicture()
[all …]
Dh264_decoder.h31 class H264Decoder : public AcceleratedVideoDecoder {
103 H264Decoder(H264Accelerator* accelerator);
104 ~H264Decoder() override;
279 DISALLOW_COPY_AND_ASSIGN(H264Decoder);
/external/webrtc/webrtc/modules/video_coding/codecs/h264/
Dh264.cc52 H264Decoder* H264Decoder::Create() { in Create()
53 RTC_DCHECK(H264Decoder::IsSupported()); in Create()
62 bool H264Decoder::IsSupported() { in IsSupported()
Dh264_video_toolbox_decoder.h28 class H264VideoToolboxDecoder : public H264Decoder {
/external/webrtc/webrtc/modules/video_coding/codecs/h264/include/
Dh264.h38 class H264Decoder : public VideoDecoder {
40 static H264Decoder* Create();
43 ~H264Decoder() override {} in ~H264Decoder()
/external/webrtc/webrtc/video/
Dvideo_decoder.cc23 RTC_DCHECK(H264Decoder::IsSupported()); in Create()
24 return H264Decoder::Create(); in Create()
/external/webrtc/webrtc/modules/video_coding/
Dcodec_database.cc588 if (H264Decoder::IsSupported()) { in CreateDecoder()
589 return new VCMGenericDecoder(H264Decoder::Create()); in CreateDecoder()
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoengine2.cc159 webrtc::H264Decoder::IsSupported(); in CodecIsInternallySupported()