Home
last modified time | relevance | path

Searched refs:isEos (Results 1 - 25 of 27) sorted by relevance

12

/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/http/
H A Dhttp_media_downloader.cpp86 unsigned int& realReadLength, bool& isEos) in Read()
89 isEos = false; in Read()
91 isEos = downloadRequest_->IsEos(); in Read()
93 if (isEos || isClosed) { in Read()
94 MEDIA_LOG_D("HttpMediaDownloader read return, isEos: " PUBLIC_LOG_D32 ", isClosed: " in Read()
95 PUBLIC_LOG_D32, isEos, isClosed); in Read()
110 MEDIA_LOG_D("Read: wantReadLength " PUBLIC_LOG_D32 ", realReadLength " PUBLIC_LOG_D32 ", isEos " in Read()
111 PUBLIC_LOG_D32, wantReadLength, realReadLength, isEos); in Read()
85 Read(unsigned char* buff, unsigned int wantReadLength, unsigned int& realReadLength, bool& isEos) Read() argument
H A Dhttp_media_downloader.h37 bool Read(unsigned char* buff, unsigned int wantReadLength, unsigned int& realReadLength, bool& isEos) override;
/foundation/multimedia/av_codec/services/engine/codec/audio/
H A Daudio_codec_worker.cpp289 bool isEos = inputBuffer->CheckIsEos(); in HandInputBuffer() local
300 return isEos; in HandInputBuffer()
309 void AudioCodecWorker::SetFirstAndEosStatus(std::shared_ptr<AudioBufferInfo> &outBuffer, bool isEos, uint32_t index) in SetFirstAndEosStatus() argument
311 if (isEos) { in SetFirstAndEosStatus()
313 outBuffer->SetEos(isEos); in SetFirstAndEosStatus()
332 bool isEos = HandInputBuffer(ret); in ConsumerOutputBuffer() local
344 SetFirstAndEosStatus(outBuffer, isEos, index); in ConsumerOutputBuffer()
/foundation/multimedia/media_foundation/engine/scene/common/
H A Ddata_stream_impl.cpp100 void VirtualDataBuffer::SetEos(bool isEos) in SetEos() argument
102 isEos_ = isEos; in SetEos()
H A Ddata_stream_impl.h52 void SetEos(bool isEos) override;
/foundation/multimedia/av_codec/services/engine/codec/audio/decoder/
H A Daudio_opus_decoder_plugin.cpp129 bool isEos = inputBuffer->CheckIsEos(); in ProcessSendData() local
132 if ((len <= 0 || (uint32_t) len > inputBuffer->GetBufferSize()) && !isEos) { in ProcessSendData()
136 if (!isEos) { in ProcessSendData()
/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/
H A Dmedia_downloader.h34 virtual bool Read(unsigned char* buff, unsigned int wantReadLength, unsigned int& realReadLength, bool& isEos) = 0;
H A Dhttp_source_plugin.cpp197 bool isEos = false; in Read() local
199 bool result = downloader_->Read(bufData->GetWritableAddr(expectedLen), expectedLen, realReadSize, isEos); in Read()
201 MEDIA_LOG_D("Read finished, read size = " PUBLIC_LOG_ZU ", isEos " PUBLIC_LOG_D32, bufData->GetSize(), isEos); in Read()
/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/monitor/
H A Ddownload_monitor.cpp93 unsigned int &realReadLength, bool &isEos) in Read()
98 bool ret = downloader_->Read(buff, wantReadLength, realReadLength, isEos); in Read()
92 Read(unsigned char *buff, unsigned int wantReadLength, unsigned int &realReadLength, bool &isEos) Read() argument
H A Ddownload_monitor.h46 bool Read(unsigned char* buff, unsigned int wantReadLength, unsigned int& realReadLength, bool& isEos) override;
/foundation/multimedia/media_foundation/engine/scene/standard/
H A Ddata_stream.h60 virtual void SetEos(bool isEos) = 0;
/foundation/multimedia/media_utils_lite/interfaces/kits/
H A Ddata_stream.h60 virtual void SetEos(bool isEos) = 0;
/foundation/multimedia/av_codec/services/engine/codec/audio/encoder/
H A Daudio_opus_encoder_plugin.cpp155 bool isEos = inputBuffer->CheckIsEos(); in ProcessSendData() local
157 if (attr.size != ((int32_t) (sampleRate*TIME_S))*channels*sizeof(short) && !isEos) { in ProcessSendData()
162 if (!isEos) { in ProcessSendData()
H A Daudio_ffmpeg_encoder_plugin.cpp82 bool isEos = inputBuffer->CheckIsEos(); in SendBuffer() local
83 if (!isEos) { in SendBuffer()
88 if (!isEos) { in SendBuffer()
H A Daudio_ffmpeg_aac_encoder_plugin.cpp407 bool isEos = inputBuffer->CheckIsEos(); in SendBuffer() local
408 if (!isEos) { in SendBuffer()
413 if (!isEos) { in SendBuffer()
/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_lite_source/
H A Dhttp_lite_source_plugin.cpp276 int isEos = -1; in Read() local
286 httpHandle_->HttpRead(bufData->GetWritableAddr(expectedLen), expectedLen, realReadSize, isEos); in Read()
296 MEDIA_LOG_D("position_ : " PUBLIC_LOG_U32 ", readSize = " PUBLIC_LOG_ZU ", isEos " PUBLIC_LOG_D32, in Read()
297 position_, bufData->GetSize(), isEos); in Read()
/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/hls/
H A Dhls_media_downloader.cpp112 unsigned int& realReadLength, bool& isEos) in Read()
116 MEDIA_LOG_D("Read: wantReadLength " PUBLIC_LOG_D32 ", realReadLength " PUBLIC_LOG_D32 ", isEos " in Read()
117 PUBLIC_LOG_D32, wantReadLength, realReadLength, isEos); in Read()
111 Read(unsigned char* buff, unsigned int wantReadLength, unsigned int& realReadLength, bool& isEos) Read() argument
H A Dhls_media_downloader.h35 bool Read(unsigned char* buff, unsigned int wantReadLength, unsigned int& realReadLength, bool& isEos) override;
/foundation/multimedia/av_codec/services/engine/codec/include/audio/
H A Daudio_codec_worker.h67 void SetFirstAndEosStatus(std::shared_ptr<AudioBufferInfo> &outBuffer, bool isEos, uint32_t index);
/foundation/multimedia/av_codec/services/media_engine/filters/
H A Dsurface_encoder_filter.cpp312 bool isEos = false; in SetParameter() local
315 parameter->Get<Tag::MEDIA_END_OF_STREAM>(isEos) && in SetParameter()
317 if (isEos) { in SetParameter()
H A Dvideo_resize_filter.cpp365 bool isEos = false; in SetParameter() local
367 parameter->Get<Tag::MEDIA_END_OF_STREAM>(isEos) && in SetParameter()
369 if (isEos) { in SetParameter()
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/func_sample/sample/
H A Davcc_reader.h68 int32_t ReadNalUnit(uint8_t *bufferAddr, int32_t &bufferSize, bool &isEos);
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/video_encoder/
H A Dvideo_ffmpeg_encoder_plugin.cpp442 bool isEos = false; in SendBufferLocked() local
444 isEos = true; in SendBufferLocked()
450 if (!isEos) { in SendBufferLocked()
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/audio_encoder/
H A Dffmpeg_base_encoder.cpp106 bool isEos = inputBuffer->flag_ & BUFFER_FLAG_EOS; in SendBuffer() local
107 if (!isEos) { in SendBuffer()
/foundation/multimedia/av_codec/test/unittest/audio_test/
H A Daudio_encoder_capi_unit_test.cpp198 bool isEos = false; in InputFunc() local
212 isEos = !inputFile_->eof(); in InputFunc()
213 if (!isEos) { in InputFunc()
218 if (isEos) { in InputFunc()
233 if (isEos) { in InputFunc()

Completed in 16 milliseconds

12