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:inBufQueue_
(Results
1 - 6
of
6
) sorted by relevance
/foundation/multimedia/media_foundation/engine/pipeline/filters/sink/video_sink/
H
A
D
video_sink_filter.cpp
61
if (
inBufQueue_
!= nullptr) {
in ~VideoSinkFilter()
62
inBufQueue_
->SetActive(false);
in ~VideoSinkFilter()
63
inBufQueue_
.reset();
in ~VideoSinkFilter()
71
if (
inBufQueue_
== nullptr) {
in Init()
72
inBufQueue_
= std::make_shared<BlockingQueue<AVBufferPtr>>("VideoSinkInBufQue", VSINK_DEFAULT_BUFFER_NUM);
in Init()
287
MEDIA_LOG_DD("RenderFrame called, inBufQue size: " PUBLIC_LOG_ZU,
inBufQueue_
->Size());
in RenderFrame()
288
auto frameBuffer =
inBufQueue_
->Pop();
in RenderFrame()
330
inBufQueue_
->Push(buffer);
in PushData()
342
inBufQueue_
->SetActive(true);
in Start()
364
inBufQueue_
in Stop()
[all...]
/foundation/multimedia/media_foundation/engine/include/pipeline/filters/sink/video_sink/
H
A
D
video_sink_filter.h
93
std::shared_ptr<OHOS::Media::BlockingQueue<AVBufferPtr>>
inBufQueue_
{nullptr};
/foundation/multimedia/av_codec/test/moduletest/audio_decoder/Common/src/
H
A
D
AudioDecoderDemoCommon.cpp
217
while (!
inBufQueue_
.empty())
in stopThread()
218
inBufQueue_
.pop();
in stopThread()
241
inBufQueue_
.push(inputBuf);
in updateInputData()
319
while (
inBufQueue_
.empty())
in NativeGetInputBuf()
321
uint8_t *inputBuf =
inBufQueue_
.front();
in NativeGetInputBuf()
322
inBufQueue_
.pop();
in NativeGetInputBuf()
1133
while (!
inBufQueue_
.empty())
in InnerFlush()
1134
inBufQueue_
.pop();
in InnerFlush()
1235
while (!
inBufQueue_
.empty())
in InnerStopThread()
1236
inBufQueue_
in InnerStopThread()
[all...]
/foundation/multimedia/av_codec/test/moduletest/audio_encoder/Common/src/
H
A
D
AudioEncoderDemoCommon.cpp
208
while (!
inBufQueue_
.empty())
inBufQueue_
.pop();
in stopThread()
233
inBufQueue_
.push(inputBuf);
in updateInputData()
272
while (
inBufQueue_
.empty()) sleep(1);
in NativeGetInputBuf()
273
uint8_t* inputBuf =
inBufQueue_
.front();
in NativeGetInputBuf()
274
inBufQueue_
.pop();
in NativeGetInputBuf()
966
while (!
inBufQueue_
.empty())
in InnerFlush()
967
inBufQueue_
.pop();
in InnerFlush()
/foundation/multimedia/av_codec/test/moduletest/audio_encoder/Common/include/
H
A
D
AudioEncoderDemoCommon.h
217
std::queue<uint8_t*>
inBufQueue_
;
member in OHOS::MediaAVCodec::AudioEncoderDemo
/foundation/multimedia/av_codec/test/moduletest/audio_decoder/Common/include/
H
A
D
AudioDecoderDemoCommon.h
223
std::queue<uint8_t*>
inBufQueue_
;
member in OHOS::MediaAVCodec::AudioDecoderDemo
Completed in 8 milliseconds