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:jsMediaSource
(Results
1 - 2
of
2
) sorted by relevance
/foundation/multimedia/player_framework/frameworks/js/mediasource/
H
A
D
media_source_napi.cpp
54
std::shared_ptr<AVMediaSourceTmp> MediaSourceNapi::GetMediaSource(napi_env env, napi_value
jsMediaSource
)
in GetMediaSource()
argument
57
napi_status status = napi_unwrap(env,
jsMediaSource
, reinterpret_cast<void **>(&mediaSource));
in GetMediaSource()
73
MediaSourceNapi *
jsMediaSource
= new(std::nothrow) MediaSourceNapi();
in Constructor()
local
74
CHECK_AND_RETURN_RET_LOG(
jsMediaSource
!= nullptr, result, "failed to new MediaSourceNapi");
in Constructor()
76
jsMediaSource
->env_ = env;
in Constructor()
77
jsMediaSource
->mediaSource_ = std::make_shared<AVMediaSourceTmp>();
in Constructor()
78
if (
jsMediaSource
->mediaSource_ == nullptr) {
in Constructor()
79
delete
jsMediaSource
;
in Constructor()
84
status = napi_wrap(env, jsThis, reinterpret_cast<void *>(
jsMediaSource
),
in Constructor()
87
delete
jsMediaSource
;
in Constructor()
101
MediaSourceNapi *
jsMediaSource
= reinterpret_cast<MediaSourceNapi *>(nativeObject);
Destructor()
local
113
napi_value
jsMediaSource
= nullptr;
JsCreateMediaSourceWithUrl()
local
[all...]
H
A
D
media_source_napi.h
29
static std::shared_ptr<AVMediaSourceTmp> GetMediaSource(napi_env env, napi_value
jsMediaSource
);
Completed in 1 milliseconds