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:createParam
(Results
1 - 4
of
4
) sorted by relevance
/foundation/multimedia/media_lite/services/player_lite/impl/
H
A
D
player_impl.cpp
835
int PlayerImpl::CreatePlayerParamCheck(PlayerControlParam &
createParam
)
in CreatePlayerParamCheck()
argument
837
if (
createParam
.u32PlayPosNotifyIntervalMs < MIN_NOTIFY_INTERVAL_MS
in CreatePlayerParamCheck()
838
&&
createParam
.u32PlayPosNotifyIntervalMs > 0) {
in CreatePlayerParamCheck()
842
if ((
createParam
.u32VideoEsBufSize < AV_ESBUF_SIZE_MIN &&
createParam
.u32VideoEsBufSize > 0)
in CreatePlayerParamCheck()
843
||
createParam
.u32VideoEsBufSize > VIDEO_ESBUF_SIZE_LIMIT) {
in CreatePlayerParamCheck()
844
MEDIA_ERR_LOG("video esbuffer illegal %u",
createParam
.u32VideoEsBufSize);
in CreatePlayerParamCheck()
847
if ((
createParam
.u32AudioEsBufSize < AV_ESBUF_SIZE_MIN &&
createParam
.u32AudioEsBufSize > 0)
in CreatePlayerParamCheck()
848
||
createParam
in CreatePlayerParamCheck()
[all...]
H
A
D
player_impl.h
114
int CreatePlayerParamCheck(PlayerControlParam &
createParam
);
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/
H
A
D
liteplayer.h
47
int32_t Init(const PlayerControlParam &
createParam
); // playercontrol create
124
int32_t InitAttr(const PlayerControlParam &
createParam
);
H
A
D
liteplayer.cpp
208
int32_t PlayerControl::InitAttr(const PlayerControlParam &
createParam
)
in InitAttr()
argument
222
pauseMode_ =
createParam
.bPauseMode;
in InitAttr()
223
CHECK_FAILED_PRINT(memcpy_s(&playerParam_, sizeof(playerParam_), &
createParam
, sizeof(PlayerControlParam)), EOK,
in InitAttr()
225
playerParam_.u32PlayPosNotifyIntervalMs = (
createParam
.u32PlayPosNotifyIntervalMs == 0) ?
in InitAttr()
226
DEFAULT_POS_NOFITY_INTERVAL :
createParam
.u32PlayPosNotifyIntervalMs;
in InitAttr()
230
int32_t PlayerControl::Init(const PlayerControlParam &
createParam
)
in Init()
argument
235
CHECK_FAILED_RETURN(InitAttr(
createParam
), HI_SUCCESS, HI_FAILURE, "InitAttr failed");
in Init()
Completed in 11 milliseconds