Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:hdiCodec_
(Results
1 - 7
of
7
) sorted by relevance
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/audio_encoder/lbvc/
H
A
D
audio_lbvc_encoder_plugin.cpp
81
hdiCodec_
(std::make_shared<HdiCodec>())
in AudioLbvcEncoderPlugin()
88
hdiCodec_
.reset();
in ~AudioLbvcEncoderPlugin()
89
hdiCodec_
= nullptr;
in ~AudioLbvcEncoderPlugin()
94
Status ret =
hdiCodec_
->InitComponent(LBVC_ENCODER_COMPONENT_NAME);
in Init()
100
Status ret =
hdiCodec_
->InitBuffers(maxInputSize_);
in Prepare()
106
return
hdiCodec_
->Reset();
in Reset()
111
Status ret =
hdiCodec_
->SendCommand(CODEC_COMMAND_STATE_SET, CODEC_STATE_EXECUTING);
in Start()
117
Status ret =
hdiCodec_
->SendCommand(CODEC_COMMAND_STATE_SET, CODEC_STATE_IDLE);
in Stop()
135
hdiCodec_
->InitParameter(param);
in SetParameter()
145
ret =
hdiCodec_
in SetParameter()
[all...]
H
A
D
audio_lbvc_encoder_plugin.h
76
std::shared_ptr<Hdi::HdiCodec>
hdiCodec_
;
member in OHOS::Media::Plugins::Lbvc::AudioLbvcEncoderPlugin
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/audio_decoder/lbvc/
H
A
D
audio_lbvc_decoder_plugin.cpp
79
hdiCodec_
(std::make_shared<HdiCodec>())
in AudioLbvcDecoderPlugin()
86
hdiCodec_
.reset();
in ~AudioLbvcDecoderPlugin()
87
hdiCodec_
= nullptr;
in ~AudioLbvcDecoderPlugin()
92
Status ret =
hdiCodec_
->InitComponent(LBVC_DECODER_COMPONENT_NAME);
in Init()
98
Status ret =
hdiCodec_
->InitBuffers(maxInputSize_);
in Prepare()
104
return
hdiCodec_
->Reset();
in Reset()
109
Status ret =
hdiCodec_
->SendCommand(CODEC_COMMAND_STATE_SET, CODEC_STATE_EXECUTING);
in Start()
115
Status ret =
hdiCodec_
->SendCommand(CODEC_COMMAND_STATE_SET, CODEC_STATE_IDLE);
in Stop()
133
hdiCodec_
->InitParameter(param);
in SetParameter()
142
ret =
hdiCodec_
in SetParameter()
[all...]
H
A
D
audio_lbvc_decoder_plugin.h
75
std::shared_ptr<Hdi::HdiCodec>
hdiCodec_
;
member in OHOS::Media::Plugins::Lbvc::AudioLbvcDecoderPlugin
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/common/
H
A
D
hdi_codec.cpp
315
HdiCodec::HdiCallback::HdiCallback(std::shared_ptr<HdiCodec> hdiCodec) :
hdiCodec_
(hdiCodec)
in HdiCallback()
322
if (
hdiCodec_
) {
in EventHandler()
323
hdiCodec_
->OnEventHandler(event, info);
in EventHandler()
330
if (
hdiCodec_
) {
in EmptyBufferDone()
331
hdiCodec_
->OnEmptyBufferDone(buffer);
in EmptyBufferDone()
339
if (
hdiCodec_
) {
in FillBufferDone()
340
hdiCodec_
->OnFillBufferDone(buffer);
in FillBufferDone()
H
A
D
hdi_codec.h
93
std::shared_ptr<HdiCodec>
hdiCodec_
= nullptr;
member in OHOS::Media::Plugins::Hdi::HdiCodec::PortIndex::HdiCallback
/foundation/multimedia/av_codec/services/engine/codeclist/
H
A
D
audio_codeclist_info.cpp
243
std::shared_ptr<Media::Plugins::Hdi::HdiCodec>
hdiCodec_
;
in GetLbvcDecoderCapability()
local
244
hdiCodec_
= std::make_shared<Media::Plugins::Hdi::HdiCodec>();
in GetLbvcDecoderCapability()
245
if (!
hdiCodec_
->IsSupportCodecType("OMX.audio.decoder.lbvc", &audioLbvcCapability)) {
in GetLbvcDecoderCapability()
267
std::shared_ptr<Media::Plugins::Hdi::HdiCodec>
hdiCodec_
;
in GetLbvcEncoderCapability()
local
268
hdiCodec_
= std::make_shared<Media::Plugins::Hdi::HdiCodec>();
in GetLbvcEncoderCapability()
269
if (!
hdiCodec_
->IsSupportCodecType("OMX.audio.encoder.lbvc", &audioLbvcCapability)) {
in GetLbvcEncoderCapability()
Completed in 4 milliseconds