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:AVCodecList
(Results
1 - 16
of
16
) sorted by relevance
/foundation/multimedia/av_codec/interfaces/inner_api/native/
H
A
D
avcodec_list.h
25
class
AVCodecList
{
class
27
virtual ~
AVCodecList
() = default;
64
static std::shared_ptr<
AVCodecList
> CreateAVCodecList()
in CreateAVCodecList()
69
static std::shared_ptr<
AVCodecList
> CreateAVCodecList();
H
A
D
codec_capability_adapter.h
38
std::shared_ptr<MediaAVCodec::
AVCodecList
> codeclist_ {nullptr};
/foundation/multimedia/av_codec/test/unittest/codeclist_test/inner/
H
A
D
codeclist_inner_mock.h
28
explicit CodecListInnerMock(std::shared_ptr<
AVCodecList
> codeclist, CapabilityData *capabilityData)
in CodecListInnerMock()
56
std::shared_ptr<
AVCodecList
> codeclist_ = nullptr;
/foundation/multimedia/av_codec/frameworks/native/avcodeclist/
H
A
D
avcodeclist_impl.h
26
class AVCodecListImpl : public
AVCodecList
, public NoCopyable {
32
//
AVCodecList
H
A
D
avcodeclist_impl.cpp
26
std::shared_ptr<
AVCodecList
> AVCodecListFactory::CreateAVCodecList()
in CreateAVCodecList()
43
CHECK_AND_RETURN_RET_LOG(codecListService_ != nullptr, AVCS_ERR_UNKNOWN, "Create
AVCodecList
service failed");
in Init()
54
AVCODEC_LOGD("Create
AVCodecList
instances successful");
in AVCodecListImpl()
85
AVCODEC_LOGD("Destroy
AVCodecList
instances successful");
in ~AVCodecListImpl()
/foundation/multimedia/av_codec/frameworks/native/capi/common/
H
A
D
native_avcapability.cpp
37
std::shared_ptr<
AVCodecList
> codeclist = AVCodecListFactory::CreateAVCodecList();
in OH_AVCodec_GetCapability()
61
std::shared_ptr<
AVCodecList
> codeclist = AVCodecListFactory::CreateAVCodecList();
in OH_AVCodec_GetCapabilityByCategory()
136
std::shared_ptr<
AVCodecList
> codeclist = AVCodecListFactory::CreateAVCodecList();
in OH_AVCapability_GetSupportedProfiles()
177
std::shared_ptr<
AVCodecList
> codeclist = AVCodecListFactory::CreateAVCodecList();
in OH_AVCapability_GetSupportedLevelsForProfile()
289
std::shared_ptr<
AVCodecList
> codeclist = AVCodecListFactory::CreateAVCodecList();
in OH_AVCapability_GetAudioSupportedSampleRates()
343
std::shared_ptr<
AVCodecList
> codeclist = AVCodecListFactory::CreateAVCodecList();
in OH_AVCapability_GetVideoSupportedPixelFormats()
/foundation/multimedia/av_codec/test/unittest/codeclist_test/
H
A
D
caps_unit_test.h
31
std::shared_ptr<
AVCodecList
> avCodecList_ = nullptr;
/foundation/distributedhardware/distributed_screen/screenhandler/src/
H
A
D
dscreen_handler.cpp
226
std::shared_ptr<MediaAVCodec::
AVCodecList
> codecList = MediaAVCodec::AVCodecListFactory::CreateAVCodecList();
in QueryCodecInfo()
/foundation/distributedhardware/distributed_screen/services/screendemo/
H
A
D
decoder_demo.cpp
195
std::shared_ptr<MediaAVCodec::
AVCodecList
> codecList = MediaAVCodec::AVCodecListFactory::CreateAVCodecList();
in CheckCodecType()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/src/distributedcamera/
H
A
D
distributed_camera_source_service.cpp
154
std::shared_ptr<MediaAVCodec::
AVCodecList
> avCodecList = MediaAVCodec::AVCodecListFactory::CreateAVCodecList();
in GetCodecInfo()
/foundation/distributedhardware/distributed_screen/services/screenservice/sourceservice/dscreenmgr/1.0/src/
H
A
D
dscreen.cpp
295
std::shared_ptr<MediaAVCodec::
AVCodecList
> codecList = MediaAVCodec::AVCodecListFactory::CreateAVCodecList();
in NegotiateCodecType()
/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/handler/src/
H
A
D
dcamera_handler.cpp
172
std::shared_ptr<MediaAVCodec::
AVCodecList
> avCodecList = MediaAVCodec::AVCodecListFactory::CreateAVCodecList();
in CreateAVCodecList()
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/
H
A
D
videoenc_temporal_scalability_unit_test.cpp
170
std::shared_ptr<
AVCodecList
> codecCapability = AVCodecListFactory::CreateAVCodecList();
in GetTemporalScalabilityCapability()
H
A
D
videoenc_func_unit_test.cpp
297
std::shared_ptr<
AVCodecList
> codecCapability = AVCodecListFactory::CreateAVCodecList();
in GetWaterMarkCapability()
329
std::shared_ptr<
AVCodecList
> codecCapability = AVCodecListFactory::CreateAVCodecList();
in GetTemporalScalabilityCapability()
/foundation/multimedia/av_codec/services/media_engine/filters/
H
A
D
decoder_surface_filter.cpp
847
std::shared_ptr<MediaAVCodec::
AVCodecList
> codecList = MediaAVCodec::AVCodecListFactory::CreateAVCodecList();
in ParseDecodeRateLimit()
/foundation/multimedia/av_codec/test/moduletest/vcodec/encoder/src/InnerAPI/
H
A
D
videoenc_ndk_inner_sample.cpp
1206
std::shared_ptr<
AVCodecList
> codecCapability = AVCodecListFactory::CreateAVCodecList();
in GetWaterMarkCapability()
Completed in 14 milliseconds