Skip to content

Commit c8fee29

Browse files
committed
edit pass: get-started-raw-media-access
1 parent e574f07 commit c8fee29

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

articles/communication-services/includes/public-preview-include-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ ms.custom: private_preview
88
---
99
> [!IMPORTANT]
1010
> Functionality described in this document is currently in public preview.
11-
> This preview version is provided without a service-level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities.
11+
> This preview version is provided without a service-level agreement, and we don't recommend it for production workloads. Certain features might not be supported or might have constrained capabilities.
1212
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).

articles/communication-services/quickstarts/voice-video-calling/includes/raw-media/raw-media-access-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Because the Android system generates the frames, you must implement your own for
248248
screenShareRawOutgoingVideoStream = new ScreenShareRawOutgoingVideoStream(rawOutgoingVideoStreamOptions);
249249
```
250250

251-
3. Request needed permissions for screen capture on Android. After this method is called, Android will automatically call `onActivityResult,` which contains the request code that you sent and the result of the operation.
251+
3. Request needed permissions for screen capture on Android. After this method is called, Android will automatically call `onActivityResult`, which contains the request code that you sent and the result of the operation.
252252

253253
Expect `Activity.RESULT_OK` if the user has provided the permission. If so, attach `screenShareRawOutgoingVideoStream` to the call and start your own foreground service to capture the frames.
254254

articles/communication-services/quickstarts/voice-video-calling/includes/raw-media/raw-media-access-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ The app must register a delegate to get notified about when it should start or s
297297

298298
func rawOutgoingVideoStreamOptions(_ rawOutgoingVideoStreamOptions: RawOutgoingVideoStreamOptions,
299299
didChangeVideoFrameSender args: VideoFrameSenderChangedEventArgs) {
300-
// Sender can change to start sending a more efficient format(given network conditions) of the ones specified
300+
// Sender can change to start sending a more efficient format (given network conditions) of the ones specified
301301
// in the list on the initial step. In that case, you should restart the sender.
302302
if running {
303303
stopRunning()

articles/communication-services/quickstarts/voice-video-calling/includes/raw-media/raw-media-access-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ Because the Windows system generates the frames, you must implement your own for
235235
2. Capture the frames from the screen by using Windows APIs.
236236

237237
```csharp
238-
MemoryBuffer memoryBuffer = // Fill it with the content you got from the Windows API's
238+
MemoryBuffer memoryBuffer = // Fill it with the content you got from the Windows APIs
239239
```
240240

241241
3. Send the video frames in the following way.

0 commit comments

Comments
 (0)