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:MuxerPlugin
(Results
1 - 13
of
13
) sorted by relevance
/foundation/multimedia/media_foundation/engine/plugin/core/
H
A
D
muxer.h
25
struct
MuxerPlugin
;
45
Muxer(uint32_t pkgVer, uint32_t apiVer, std::shared_ptr<
MuxerPlugin
> plugin);
48
std::shared_ptr<
MuxerPlugin
> muxer_;
H
A
D
muxer.cpp
23
Muxer::Muxer (uint32_t pkgVer, uint32_t apiVer, std::shared_ptr<
MuxerPlugin
> plugin)
in Muxer()
H
A
D
plugin_manager.cpp
70
return CreatePlugin<Muxer,
MuxerPlugin
>(name, PluginType::MUXER);
in CreateMuxerPlugin()
/foundation/multimedia/media_foundation/engine/include/plugin/interface/
H
A
D
muxer_plugin.h
31
struct
MuxerPlugin
: public PluginBase {
struct
32
explicit
MuxerPlugin
(std::string&& name) : PluginBase(std::move(name)) {}
in MuxerPlugin()
function
55
PluginCreatorFunc<
MuxerPlugin
> creator {nullptr}; ///< Muxer plugin create function.
/foundation/multimedia/av_codec/test/nativedemo/avmuxer/
H
A
D
avmuxer_ffmpeg_demo.h
30
std::shared_ptr<Plugins::
MuxerPlugin
> CreatePlugin(Plugins::OutputFormat format);
36
std::shared_ptr<Plugins::
MuxerPlugin
> ffmpegMuxer_ = nullptr;
H
A
D
avmuxer_ffmpeg_demo.cpp
84
std::shared_ptr<Plugins::
MuxerPlugin
> AVMuxerFFmpegDemo::CreatePlugin(Plugins::OutputFormat format)
in CreatePlugin()
97
return std::reinterpret_pointer_cast<Plugins::
MuxerPlugin
>(plugin);
in CreatePlugin()
/foundation/multimedia/av_codec/interfaces/plugin/
H
A
D
muxer_plugin.h
27
class
MuxerPlugin
: public PluginBase {
class
29
explicit
MuxerPlugin
(std::string &&name) : PluginBase(std::move(name)) {}
in MuxerPlugin()
function in OHOS::Media::Plugins::MuxerPlugin
/foundation/multimedia/av_codec/services/media_engine/modules/muxer/
H
A
D
media_muxer.h
54
std::shared_ptr<Plugins::
MuxerPlugin
> CreatePlugin(Plugins::OutputFormat format);
91
std::shared_ptr<Plugins::
MuxerPlugin
> muxer_ = nullptr;
H
A
D
media_muxer.cpp
426
std::shared_ptr<Plugins::
MuxerPlugin
> MediaMuxer::CreatePlugin(Plugins::OutputFormat format)
443
return std::reinterpret_pointer_cast<Plugins::
MuxerPlugin
>(plugin);
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/muxer/
H
A
D
ffmpeg_muxer_plugin.h
35
class FFmpegMuxerPlugin : public
MuxerPlugin
{
H
A
D
ffmpeg_muxer_plugin.cpp
94
def.creator = [](const std::string& name) -> std::shared_ptr<
MuxerPlugin
> {
in RegisterMuxerPlugins()
293
FFmpegMuxerPlugin::FFmpegMuxerPlugin(std::string name) :
MuxerPlugin
(std::move(name)) {}
in FFmpegMuxerPlugin()
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/muxer/
H
A
D
ffmpeg_muxer_plugin.h
37
class FFmpegMuxerPlugin : public
MuxerPlugin
{
H
A
D
ffmpeg_muxer_plugin.cpp
157
def.SetCreator([](const std::string& name) -> std::shared_ptr<
MuxerPlugin
> {
in RegisterMuxerPlugins()
196
:
MuxerPlugin
(std::move(name)), isWriteHeader_(false)
in FFmpegMuxerPlugin()
Completed in 7 milliseconds