Home
last modified time | relevance | path

Searched refs:CodecType (Results 1 – 25 of 25) sorted by relevance

/foundation/multimedia/histreamer/engine/plugin/core/hdi_codec/
Dhdi_utils.cpp26 const static std::pair<::CodecType, Plugin::CodecType> codecTypeMap[] = {
27 {::CodecType::VIDEO_DECODER, Plugin::CodecType::VIDEO_DECODER},
28 {::CodecType::VIDEO_ENCODER, Plugin::CodecType::VIDEO_ENCODER},
29 {::CodecType::AUDIO_DECODER, Plugin::CodecType::AUDIO_DECODER},
30 {::CodecType::AUDIO_ENCODER, Plugin::CodecType::AUDIO_ENCODER},
180 bool Translates(const ::CodecType& codecType, Plugin::CodecType& pluginCodecType) in Translates()
Dhdi_adapter.cpp87 case ::CodecType::AUDIO_DECODER: in TranslateCapability()
89 case ::CodecType::VIDEO_DECODER: { in TranslateCapability()
92 case ::CodecType::AUDIO_ENCODER: { in TranslateCapability()
95 case ::CodecType::VIDEO_ENCODER: { in TranslateCapability()
141 if (capList[i].type != ::CodecType::VIDEO_DECODER) { in RegisterOneCodecPackage()
/foundation/ai/engine/services/common/platform/os_wrapper/audio_loader/include/codec/
Dcoder_wrapper.h37 const CodecType CODEC_PCM_TO_AAC = AUDIO_ENCODER;
38 const CodecType CODEC_AAC_TO_PCM = AUDIO_DECODER;
Ddecoder_wrapper.h48 CodecType decodeType_ = CODEC_AAC_TO_PCM;
/foundation/multimedia/histreamer/engine/plugin/interface/
Dcodec_plugin.h136 enum struct CodecType { enum
150 CodecType codecType {};
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/decoder/
Ddecoder.h52 CodecType type;
61 …int32_t GetCapbilityByMime(AvCodecMime mime, CodecType type, uint32_t flags, CodecCapability &cap);
Ddecoder.cpp37 int32_t Decoder::GetCapbilityByMime(AvCodecMime mime, CodecType type, uint32_t flags, CodecCapabili… in GetCapbilityByMime()
/foundation/multimedia/player_framework/services/engine/gstreamer/plugins/codec/hdi/common/include/
Dgst_hdi.h55 CodecType codec_type;
87 CodecType codec_type;
/foundation/multimedia/audio_lite/services/impl/audio_encoder/include/
Daudio_encoder.h129 CodecType domainKind_ = AUDIO_ENCODER;
/foundation/multimedia/player_framework/services/engine/gstreamer/plugins/codec/hdi_plugins/
Dhdi_init.h45 static int32_t GetCodecType(CodecType hdiType);
Dhdi_init.cpp148 int32_t HdiInit::GetCodecType(CodecType hdiType) in GetCodecType()
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/sink/
Dplayer_sink_manager.h71 int32_t RenderFrame(PlayerBufferInfo &frame, CodecType type);
Dplayer_sink_manager.cpp295 int32_t SinkManager::RenderFrame(PlayerBufferInfo &frame, CodecType type) in RenderFrame()
/foundation/multimedia/media_lite/test/
Dtest_play_file_h265.cpp159 CodecType domain = VIDEO_DECODER; in DecoderCreate()
162 param[index].size = sizeof(CodecType); in DecoderCreate()
/foundation/distributedhardware/distributed_screen/common/include/
Ddscreen_constants.h47 enum CodecType : uint8_t { enum
/foundation/ai/engine/services/common/platform/os_wrapper/audio_loader/source/codec/
Ddecoder_wrapper.cpp62 … attr[index++] = {.key = KEY_CODEC_TYPE, .val = (void *)(&decodeType_), .size = sizeof(CodecType)}; in InitCodecAttr()
/foundation/multimedia/camera_lite/services/impl/src/
Dcamera_device.cpp105 CodecType domainKind = VIDEO_ENCODER; in CameraCreateVideoEnc()
108 param[paramIndex].size = sizeof(CodecType); in CameraCreateVideoEnc()
241 CodecType domainKind = VIDEO_ENCODER; in CameraCreateJpegEnc()
242 …am(param[paramIndex], KEY_CODEC_TYPE, reinterpret_cast<uint8_t *>(&domainKind), sizeof(CodecType)); in CameraCreateJpegEnc()
/foundation/multimedia/audio_lite/services/impl/audio_encoder/
Daudio_encoder.cpp136 encAttr_[paramIndex].size = sizeof(CodecType); in InitAudioEncoderAttr()
/foundation/multimedia/histreamer/engine/plugin/plugins/minimp3_adapter/
Dminimp3_decoder_plugin.cpp250 definition.codecType = CodecType::AUDIO_DECODER; in RegisterDecoderPlugin()
/foundation/multimedia/histreamer/engine/plugin/plugins/lite_aac_decoder/
Dlite_aac_decoder_plugin.cpp51 definition.codecType = CodecType::AUDIO_DECODER; in RegisterDecoderPlugin()
/foundation/multimedia/histreamer/engine/plugin/plugins/ffmpeg_adapter/audio_encoder/
Daudio_ffmpeg_encoder_plugin.cpp57 definition.codecType = CodecType::AUDIO_ENCODER; in RegisterAudioEncoderPlugins()
/foundation/multimedia/histreamer/engine/plugin/plugins/ffmpeg_adapter/audio_decoder/
Daudio_ffmpeg_decoder_plugin.cpp72 definition.codecType = CodecType::AUDIO_DECODER; in RegisterAudioDecoderPlugins()
/foundation/multimedia/histreamer/engine/plugin/plugins/ffmpeg_adapter/video_encoder/
Dvideo_ffmpeg_encoder_plugin.cpp62 definition.codecType = CodecType::VIDEO_ENCODER; in RegisterVideoEncoderPlugins()
/foundation/multimedia/histreamer/engine/plugin/plugins/ffmpeg_adapter/video_decoder/
Dvideo_ffmpeg_decoder_plugin.cpp62 definition.codecType = CodecType::VIDEO_DECODER; in RegisterVideoDecoderPlugins()
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/
Dliteplayer.cpp990 static void InitOutputBuffer(CodecBuffer &outInfo, CodecType type) in InitOutputBuffer()