Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit eb0fb1d

Browse files
committed
Apply suggestions from code review
1 parent 07cb30e commit eb0fb1d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/video_player/video_player_avfoundation/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 2.3.2
22

3-
* Apply the standardized transform for videos with different orientations.
3+
* Applies the standardized transform for videos with different orientations.
44

55
## 2.3.1
66

packages/video_player/video_player_avfoundation/ios/Classes/AVAssetTrackUtils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
/**
88
* Note: https://stackoverflow.com/questions/64161544
9-
* `AVAssetTrack.preferredTransform` can have wrong `tx` and `ty`.
10-
* This function provides a standardized transform
9+
* Returns a standardized transform
1110
* according to the orientation of the track.
11+
* `AVAssetTrack.preferredTransform` can have wrong `tx` and `ty`.
1212
*/
1313
CGAffineTransform FLTGetStandardizedTransformForTrack(AVAssetTrack* track);

packages/video_player/video_player_avfoundation/ios/Classes/FLTVideoPlayerPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
// found in the LICENSE file.
44

55
#import "FLTVideoPlayerPlugin.h"
6-
#import "AVAssetTrackUtils.h"
76

87
#import <AVFoundation/AVFoundation.h>
98
#import <GLKit/GLKit.h>
109

10+
#import "AVAssetTrackUtils.h"
1111
#import "messages.g.h"
1212

1313
#if !__has_feature(objc_arc)

0 commit comments

Comments
 (0)