mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 06:26:29 +08:00
videoio(macosx): fix array access exception in AVFoundation
This commit is contained in:
parent
51e16bbe81
commit
35a2f2fef9
@ -694,7 +694,15 @@ CvCaptureFile::CvCaptureFile(const char* filename) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
mAssetTrack = [[mAsset tracksWithMediaType: AVMediaTypeVideo][0] retain];
|
NSArray *tracks = [mAsset tracksWithMediaType:AVMediaTypeVideo];
|
||||||
|
if ([tracks count] == 0) {
|
||||||
|
fprintf(stderr, "OpenCV: Couldn't read video stream from file \"%s\"\n", filename);
|
||||||
|
[localpool drain];
|
||||||
|
started = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mAssetTrack = [tracks[0] retain];
|
||||||
|
|
||||||
if ( ! setupReadingAt(kCMTimeZero) ) {
|
if ( ! setupReadingAt(kCMTimeZero) ) {
|
||||||
fprintf(stderr, "OpenCV: Couldn't read movie file \"%s\"\n", filename);
|
fprintf(stderr, "OpenCV: Couldn't read movie file \"%s\"\n", filename);
|
||||||
|
Loading…
Reference in New Issue
Block a user