Uh oh!
There was an error while loading. Please reload this page.
[camera_avfoundation] Migrate tests to Swift - part 2 - #8613
Conversation
This reverts commit 39334e1.
| // AVAssetWriterInput needs these three keys, otherwise it throws. | ||
| var outputSettingsWithRequiredKeys = outputSettings ?? [:] | ||
| outputSettingsWithRequiredKeys[AVVideoCodecKey] = AVVideoCodecType.h264 | ||
| outputSettingsWithRequiredKeys[AVVideoWidthKey] = 1280 | ||
| outputSettingsWithRequiredKeys[AVVideoHeightKey] = 720 | ||
| return AVAssetWriterInput(mediaType: .video, outputSettings: outputSettingsWithRequiredKeys) |
There was a problem hiding this comment.
In Objective-C it worked without these three keys, although the documentation still says that they're needed. For Swift, I had to add them here, otherwise AVAssetWriterInput constructor throws, as per the documentation:
When using this initializer, a video settings dictionary must be fully specified, meaning that it must contain AVVideoCodecKey, AVVideoWidthKey, and AVVideoHeightKey.
and
This method throws an exception for any of the following reasons:
...
- for video inputs, the output settings do not contain a required key (AVVideoCodecKey, AVVideoWidthKey, AVVideoHeightKey)
And in this test we only have AVVideoCompressionPropertiesKey in options here.
3227f58 to
612c425CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
This file was migrated to Swift in the previous PR, but I did not remove the ObjectiveC version - now it's done.
FirentisTFW
commented
Feb 18, 2025
@stuartmorgan Would you like to do a secondary review or can I land it? |
Uh oh!
There was an error while loading. Please reload this page.
stuartmorgan-g
commented
Feb 18, 2025
I only skimmed it, since it doesn't need a second full review, but other than the missing test file this looks good to land. |
flutter/packages@8542af3...cb4fb13 2025-02-18 56475207+Dan-Crane@users.noreply.github.com [shared_preferences] Fix JSON parsing issue with _decodeValue (flutter/packages#8211) 2025-02-18 pawel.jakubowski@leancode.pl [camera_avfoundation] Migrate tests to Swift - part 2 (flutter/packages#8613) 2025-02-18 stuartmorgan@google.com [google_sign_in] Adopt task queues for Android (flutter/packages#8622) 2025-02-17 engine-flutter-autoroll@skia.org Roll Flutter from 892f9c1 to e8f34a9 (71 revisions) (flutter/packages#8614) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-packages-flutter-autoroll Please CC flutter-ecosystem@google.com on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
This PR migrates some of Objective-C tests to Swift as a part of Swift migration: [flutter/flutter/issues/119109](flutter/flutter#119109). I kept the names of test cases the same. Tests migrated in this PR: - CameraCaptureSessionQueueRaceConditionTests - CameraMethodChannelTests - CameraOrientationTests - CameraSettingsTests - CameraSessionPresetsTests
This PR migrates some of Objective-C tests to Swift as a part of Swift migration: [flutter/flutter/issues/119109](flutter/flutter#119109). I kept the names of test cases the same. Tests migrated in this PR: - CameraCaptureSessionQueueRaceConditionTests - CameraMethodChannelTests - CameraOrientationTests - CameraSettingsTests - CameraSessionPresetsTests
This PR migrates some of Objective-C tests to Swift as a part of Swift migration: [flutter/flutter/issues/119109](flutter/flutter#119109). I kept the names of test cases the same. Tests migrated in this PR: - CameraCaptureSessionQueueRaceConditionTests - CameraMethodChannelTests - CameraOrientationTests - CameraSettingsTests - CameraSessionPresetsTests
This PR migrates some of Objective-C tests to Swift as a part of Swift migration: [flutter/flutter/issues/119109](flutter/flutter#119109). I kept the names of test cases the same. Tests migrated in this PR: - CameraCaptureSessionQueueRaceConditionTests - CameraMethodChannelTests - CameraOrientationTests - CameraSettingsTests - CameraSessionPresetsTests
This PR migrates some of Objective-C tests to Swift as a part of Swift migration: flutter/flutter/issues/119109.
I kept the names of test cases the same.
Tests migrated in this PR:
Pre-launch Checklist
dart format.)[shared_preferences]pubspec.yamlwith an appropriate new version according to the pub versioning philosophy, or this PR is exempt from version changes.CHANGELOG.mdto add a description of the change, following repository CHANGELOG style, or this PR is exempt from CHANGELOG changes.///).