/aosp12/frameworks/av/media/libstagefright/httplive/ |
H A D | LiveSession.h | 58 enum StreamType { enum 79 status_t dequeueAccessUnit(StreamType stream, sp<ABuffer> *accessUnit); 81 status_t getStreamFormatMeta(StreamType stream, sp<MetaData> *meta); 103 static const char *getKeyForStream(StreamType type); 104 static const char *getNameForStream(StreamType type); 105 static ATSParser::SourceType getSourceTypeForStream(StreamType type); 225 KeyedVector<StreamType, sp<AnotherPacketSource> > mPacketSources; 227 KeyedVector<StreamType, sp<AnotherPacketSource> > mPacketSources2; 280 static StreamType indexToType(int idx); 289 void swapPacketSource(StreamType stream);
|
H A D | LiveSession.cpp | 227 const char *LiveSession::getKeyForStream(StreamType type) { in getKeyForStream() 244 const char *LiveSession::getNameForStream(StreamType type) { in getNameForStream() 340 StreamType stream, sp<ABuffer> *accessUnit) { in dequeueAccessUnit() 547 StreamType stream = indexToType(i); in checkSwitchProgress() 613 StreamType stream = indexToType(i); in checkSwitchProgress() 977 return (StreamType)(1 << idx); in indexToType() 1206 StreamType type = indexToType(trackIndex); in getPacketSourceForStreamIndex() 1586 StreamType type = indexToType(j); in changeConfiguration() 1971 void LiveSession::swapPacketSource(StreamType stream) { in swapPacketSource() 2003 StreamType stream = indexToType(idx); in tryToFinishBandwidthSwitch() [all …]
|
H A D | PlaylistFetcher.h | 138 KeyedVector<LiveSession::StreamType, sp<AnotherPacketSource> >
|
H A D | PlaylistFetcher.cpp | 1484 LiveSession::StreamType streamTypes[] = in onDownloadNext() 1490 LiveSession::StreamType streamType = streamTypes[i]; in onDownloadNext() 1760 const LiveSession::StreamType stream = mPacketSources.keyAt(i); in extractAndQueueAccessUnitsFromTs() 1818 const LiveSession::StreamType stream = mPacketSources.keyAt(i); in extractAndQueueAccessUnitsFromTs()
|
/aosp12/hardware/google/camera/common/hal/utils/ |
H A D | utils.cc | 40 if (stream.stream_type == StreamType::kOutput && in IsDepthStream() 50 if (stream.stream_type == StreamType::kOutput && in IsPreviewStream() 61 if (stream.stream_type == StreamType::kOutput && in IsJPEGSnapshotStream() 72 if (stream.stream_type == StreamType::kOutput && in IsOutputZslStream() 82 if (stream.stream_type == StreamType::kOutput && in IsVideoStream() 91 if (stream.stream_type == StreamType::kOutput && in IsRawStream() 102 if (stream.stream_type == StreamType::kInput && in IsInputRawStream() 117 if (stream.stream_type == StreamType::kOutput && in IsYUVSnapshotStream()
|
H A D | hdrplus_request_processor.cc | 123 raw_stream.stream_type = StreamType::kInput; in ConfigureStreams()
|
/aosp12/frameworks/av/services/camera/libcameraservice/api1/client2/ |
H A D | StreamingProcessor.h | 64 enum StreamType { enum 69 status_t startStream(StreamType type, 95 StreamType mActiveRequest;
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | simdtest.cpp | 42 template <typename StreamType> 52 StreamType s(buffer); in TestSkipWhitespace()
|
/aosp12/hardware/google/camera/common/hal/hidl_service/ |
H A D | hidl_utils.h | 50 using ::android::hardware::camera::device::V3_2::StreamType; 176 status_t ConvertToHalStreamType(StreamType hidl_stream_type, 177 google_camera_hal::StreamType* hal_stream_type);
|
H A D | hidl_utils.cc | 920 status_t ConvertToHalStreamType(StreamType hidl_stream_type, in ConvertToHalStreamType() 921 google_camera_hal::StreamType* hal_stream_type) { in ConvertToHalStreamType() 928 case StreamType::OUTPUT: in ConvertToHalStreamType() 929 *hal_stream_type = google_camera_hal::StreamType::kOutput; in ConvertToHalStreamType() 931 case StreamType::INPUT: in ConvertToHalStreamType() 932 *hal_stream_type = google_camera_hal::StreamType::kInput; in ConvertToHalStreamType()
|
/aosp12/hardware/google/camera/common/hal/common/ |
H A D | hal_types.h | 94 enum class StreamType : uint32_t { enum 112 StreamType stream_type = StreamType::kOutput;
|
/aosp12/hardware/google/camera/common/hal/tests/ |
H A D | internal_stream_manager_tests.cc | 33 .stream_type = StreamType::kOutput, 43 .stream_type = StreamType::kOutput, 53 .stream_type = StreamType::kOutput,
|
H A D | test_utils.cc | 37 stream->stream_type = StreamType::kOutput; in GetDummyPreviewStream()
|
/aosp12/hardware/google/camera/common/hal/google_camera_hal/ |
H A D | realtime_zsl_request_processor.cc | 69 entry.data.i32[4 * i + 3] == static_cast<int32_t>(StreamType::kOutput)) { in SelectWidthAndHeight() 89 entry.data.i32[4 * i + 3] == static_cast<int32_t>(StreamType::kOutput)) { in SelectWidthAndHeight() 216 stream_to_add.stream_type = StreamType::kOutput; in ConfigureStreams()
|
H A D | rgbird_rt_request_processor.cc | 333 yuv_stream.stream_type = StreamType::kOutput; in CreateDepthInternalStreams() 363 raw_stream[i].stream_type = StreamType::kOutput; in CreateDepthInternalStreams() 401 raw_stream.stream_type = StreamType::kOutput; in RegisterHdrplusInternalRaw()
|
H A D | snapshot_request_processor.cc | 104 yuv_stream.stream_type = StreamType::kInput; in ConfigureStreams()
|
H A D | rgbird_result_request_processor.cc | 734 if (stream.stream_type == StreamType::kOutput) { in ConfigureStreams() 743 } else if (stream.stream_type == StreamType::kInput) { in ConfigureStreams()
|
/aosp12/packages/modules/adb/ |
H A D | bugreport_test.cpp | 60 enum StreamType { enum 70 explicit OnStandardStreamsCallbackAction(StreamType type, const std::string& output) in OnStandardStreamsCallbackAction() 83 StreamType type_;
|
/aosp12/frameworks/base/media/java/android/media/metrics/ |
H A D | PlaybackMetrics.java | 116 public @interface StreamType {} annotation in PlaybackMetrics 235 @StreamType 547 public @NonNull Builder setStreamType(@StreamType int value) { in setStreamType()
|
/aosp12/frameworks/av/media/libmediaplayerservice/nuplayer/ |
H A D | HTTPLiveSource.h | 92 LiveSession::StreamType fetchType, int32_t pushWhat);
|
H A D | HTTPLiveSource.cpp | 251 LiveSession::StreamType fetchType, int32_t pushWhat) { in pollForRawData()
|
/aosp12/frameworks/proto_logging/stats/enums/stats/mediametrics/ |
H A D | mediametrics.proto | 21 enum StreamType { enum
|
/aosp12/hardware/interfaces/camera/device/3.4/default/include/device_v3_4_impl/ |
H A D | CameraDeviceSession.h | 47 using ::android::hardware::camera::device::V3_2::StreamType;
|
/aosp12/hardware/interfaces/camera/provider/2.4/vts/functional/ |
H A D | VtsHalCameraProviderV2_4TargetTest.cpp | 3584 StreamType::OUTPUT, in TEST_P() 3641 StreamType::OUTPUT, in TEST_P() 3677 StreamType::OUTPUT, in TEST_P() 3712 StreamType::OUTPUT, in TEST_P() 4263 StreamType::OUTPUT, in TEST_P() 4324 StreamType::OUTPUT, in TEST_P() 4370 StreamType::OUTPUT, in TEST_P() 4411 StreamType::OUTPUT, in TEST_P() 5954 StreamType::OUTPUT, in TEST_P() 6045 StreamType::OUTPUT, in TEST_P() [all …]
|
/aosp12/hardware/interfaces/camera/device/3.6/default/include/ext_device_v3_6_impl/ |
H A D | ExternalCameraOfflineSession.h | 56 using ::android::hardware::camera::device::V3_2::StreamType;
|