@@ -82,17 +82,29 @@ CameraError CameraDevice::InitializeStreams()
82
82
83
83
CameraError CameraDevice::VideoStreamAllocate (const VideoStreamStruct & allocateArgs, uint16_t & outStreamID)
84
84
{
85
+ outStreamID = kInvalidStreamID ;
86
+ bool foundAvailableStream = false ;
87
+
85
88
for (VideoStream & stream : videoStreams)
86
89
{
87
- // Fake allocation with just matching codec
88
- if (!stream.isAllocated && stream.codec == allocateArgs.videoCodec )
90
+ if (!stream.isAllocated )
89
91
{
90
- stream.isAllocated = true ;
91
- outStreamID = stream.id ;
92
- return CameraError::SUCCESS;
92
+ foundAvailableStream = true ;
93
+
94
+ if (stream.codec == allocateArgs.videoCodec )
95
+ {
96
+ stream.isAllocated = true ;
97
+ outStreamID = stream.id ;
98
+ return CameraError::SUCCESS;
99
+ }
93
100
}
94
101
}
95
102
103
+ if (!foundAvailableStream)
104
+ {
105
+ return CameraError::ERROR_RESOURCE_EXHAUSTED;
106
+ }
107
+
96
108
return CameraError::ERROR_VIDEO_STREAM_ALLOC_FAILED;
97
109
}
98
110
@@ -112,17 +124,30 @@ CameraError CameraDevice::VideoStreamDeallocate(const uint16_t streamID)
112
124
113
125
CameraError CameraDevice::AudioStreamAllocate (const AudioStreamStruct & allocateArgs, uint16_t & outStreamID)
114
126
{
127
+ outStreamID = kInvalidStreamID ;
128
+
129
+ bool foundAvailableStream = false ;
130
+
115
131
for (AudioStream & stream : audioStreams)
116
132
{
117
- // TODO: Match more params
118
- if (!stream.isAllocated && stream.codec == allocateArgs.audioCodec )
133
+ if (!stream.isAllocated )
119
134
{
120
- stream.isAllocated = true ;
121
- outStreamID = stream.id ;
122
- return CameraError::SUCCESS;
135
+ foundAvailableStream = true ;
136
+
137
+ if (stream.codec == allocateArgs.audioCodec )
138
+ {
139
+ stream.isAllocated = true ;
140
+ outStreamID = stream.id ;
141
+ return CameraError::SUCCESS;
142
+ }
123
143
}
124
144
}
125
145
146
+ if (!foundAvailableStream)
147
+ {
148
+ return CameraError::ERROR_RESOURCE_EXHAUSTED;
149
+ }
150
+
126
151
return CameraError::ERROR_AUDIO_STREAM_ALLOC_FAILED;
127
152
}
128
153
@@ -142,17 +167,30 @@ CameraError CameraDevice::AudioStreamDeallocate(const uint16_t streamID)
142
167
143
168
CameraError CameraDevice::SnapshotStreamAllocate (const SnapshotStreamStruct & allocateArgs, uint16_t & outStreamID)
144
169
{
170
+ outStreamID = kInvalidStreamID ;
171
+
172
+ bool foundAvailableStream = false ;
173
+
145
174
for (SnapshotStream & stream : snapshotStreams)
146
175
{
147
- // TODO: Match more params
148
- if (!stream.isAllocated && stream.codec == allocateArgs.imageCodec )
176
+ if (!stream.isAllocated )
149
177
{
150
- stream.isAllocated = true ;
151
- outStreamID = stream.id ;
152
- return CameraError::SUCCESS;
178
+ foundAvailableStream = true ;
179
+
180
+ if (stream.codec == allocateArgs.imageCodec )
181
+ {
182
+ stream.isAllocated = true ;
183
+ outStreamID = stream.id ;
184
+ return CameraError::SUCCESS;
185
+ }
153
186
}
154
187
}
155
188
189
+ if (!foundAvailableStream)
190
+ {
191
+ return CameraError::ERROR_RESOURCE_EXHAUSTED;
192
+ }
193
+
156
194
return CameraError::ERROR_SNAPSHOT_STREAM_ALLOC_FAILED;
157
195
}
158
196
0 commit comments