24 |
25 | /**
26 | * Log entry for an FFmpegKit session.
27 | */
28 | @interface Log : NSObject
29 |
30 | - (instancetype)init:(long)sessionId :(int)level :(NSString*)message;
31 |
32 | - (long)getSessionId;
33 |
34 | - (int)getLevel;
35 |
36 | - (NSString*)getMessage;
37 |
38 | @end
39 |
40 | #endif // FFMPEG_KIT_LOG_H
41 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Headers/LogCallback.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2018-2021 Taner Sener
3 | *
4 | * This file is part of FFmpegKit.
5 | *
6 | * FFmpegKit is free software: you can redistribute it and/or modify
7 | * it under the terms of the GNU Lesser General Public License as published by
8 | * the Free Software Foundation, either version 3 of the License, or
9 | * (at your option) any later version.
10 | *
11 | * FFmpegKit is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | * GNU Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public License
17 | * along with FFmpegKit. If not, see .
18 | */
19 |
20 | #ifndef FFMPEG_KIT_LOG_CALLBACK_H
21 | #define FFMPEG_KIT_LOG_CALLBACK_H
22 |
23 | #import
24 | #import "Log.h"
25 |
26 | /**
27 | * Callback that receives logs generated for FFmpegKit sessions.
28 | *
29 | * @param log log entry
30 | */
31 | typedef void (^LogCallback)(Log* log);
32 |
33 | #endif // FFMPEG_KIT_LOG_CALLBACK_H
34 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Headers/LogRedirectionStrategy.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2021 Taner Sener
3 | *
4 | * This file is part of FFmpegKit.
5 | *
6 | * FFmpegKit is free software: you can redistribute it and/or modify
7 | * it under the terms of the GNU Lesser General License as published by
8 | * the Free Software Foundation, either version 3 of the License, or
9 | * (at your option) any later version.
10 | *
11 | * FFmpegKit is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | * GNU Lesser General License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General License
17 | * along with FFmpegKit. If not, see .
18 | */
19 |
20 | #ifndef FFMPEG_KIT_LOG_REDIRECTION_STRATEGY_H
21 | #define FFMPEG_KIT_LOG_REDIRECTION_STRATEGY_H
22 |
23 | typedef NS_ENUM(NSUInteger, LogRedirectionStrategy) {
24 | LogRedirectionStrategyAlwaysPrintLogs,
25 | LogRedirectionStrategyPrintLogsWhenNoCallbacksDefined,
26 | LogRedirectionStrategyPrintLogsWhenGlobalCallbackNotDefined,
27 | LogRedirectionStrategyPrintLogsWhenSessionCallbackNotDefined,
28 | LogRedirectionStrategyNeverPrintLogs
29 | };
30 |
31 | #endif // FFMPEG_KIT_LOG_REDIRECTION_STRATEGY_H
32 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Headers/Packages.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2021 Taner Sener
3 | *
4 | * This file is part of FFmpegKit.
5 | *
6 | * FFmpegKit is free software: you can redistribute it and/or modify
7 | * it under the terms of the GNU Lesser General License as published by
8 | * the Free Software Foundation, either version 3 of the License, or
9 | * (at your option) any later version.
10 | *
11 | * FFmpegKit is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | * GNU Lesser General License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General License
17 | * along with FFmpegKit. If not, see .
18 | */
19 |
20 | #ifndef FFMPEG_KIT_PACKAGES_H
21 | #define FFMPEG_KIT_PACKAGES_H
22 |
23 | #import
24 |
25 | /**
26 | * Helper class to extract binary package information.
27 | */
28 | @interface Packages : NSObject
29 |
30 | /**
31 | * Returns the FFmpegKit binary package name.
32 | *
33 | * @return predicted FFmpegKit binary package name
34 | */
35 | + (NSString*)getPackageName;
36 |
37 | /**
38 | * Returns enabled external libraries by FFmpeg.
39 | *
40 | * @return enabled external libraries
41 | */
42 | + (NSArray*)getExternalLibraries;
43 |
44 | @end
45 |
46 | #endif // FFMPEG_KIT_PACKAGES_H
47 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Headers/ReturnCode.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2021 Taner Sener
3 | *
4 | * This file is part of FFmpegKit.
5 | *
6 | * FFmpegKit is free software: you can redistribute it and/or modify
7 | * it under the terms of the GNU Lesser General License as published by
8 | * the Free Software Foundation, either version 3 of the License, or
9 | * (at your option) any later version.
10 | *
11 | * FFmpegKit is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | * GNU Lesser General License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General License
17 | * along with FFmpegKit. If not, see .
18 | */
19 |
20 | #ifndef FFMPEG_KIT_RETURN_CODE_H
21 | #define FFMPEG_KIT_RETURN_CODE_H
22 |
23 | #import
24 |
25 | typedef NS_ENUM(NSUInteger, ReturnCodeEnum) {
26 | ReturnCodeSuccess = 0,
27 | ReturnCodeCancel = 255
28 | };
29 |
30 | @interface ReturnCode : NSObject
31 |
32 | - (instancetype)init:(int)value;
33 |
34 | + (BOOL)isSuccess:(ReturnCode*)value;
35 |
36 | + (BOOL)isCancel:(ReturnCode*)value;
37 |
38 | - (int)getValue;
39 |
40 | - (BOOL)isValueSuccess;
41 |
42 | - (BOOL)isValueError;
43 |
44 | - (BOOL)isValueCancel;
45 |
46 | @end
47 |
48 | #endif // FFMPEG_KIT_RETURN_CODE_H
49 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Headers/SessionState.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2021 Taner Sener
3 | *
4 | * This file is part of FFmpegKit.
5 | *
6 | * FFmpegKit is free software: you can redistribute it and/or modify
7 | * it under the terms of the GNU Lesser General License as published by
8 | * the Free Software Foundation, either version 3 of the License, or
9 | * (at your option) any later version.
10 | *
11 | * FFmpegKit is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | * GNU Lesser General License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General License
17 | * along with FFmpegKit. If not, see .
18 | */
19 |
20 | #ifndef FFMPEG_KIT_SESSION_STATE_H
21 | #define FFMPEG_KIT_SESSION_STATE_H
22 |
23 | typedef NS_ENUM(NSUInteger, SessionState) {
24 | SessionStateCreated,
25 | SessionStateRunning,
26 | SessionStateFailed,
27 | SessionStateCompleted
28 | };
29 |
30 | #endif // FFMPEG_KIT_SESSION_STATE_H
31 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Headers/Statistics.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2018-2021 Taner Sener
3 | *
4 | * This file is part of FFmpegKit.
5 | *
6 | * FFmpegKit is free software: you can redistribute it and/or modify
7 | * it under the terms of the GNU Lesser General Public License as published by
8 | * the Free Software Foundation, either version 3 of the License, or
9 | * (at your option) any later version.
10 | *
11 | * FFmpegKit is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | * GNU Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public License
17 | * along with FFmpegKit. If not, see .
18 | */
19 |
20 | #ifndef FFMPEG_KIT_STATISTICS_H
21 | #define FFMPEG_KIT_STATISTICS_H
22 |
23 | #import
24 |
25 | /**
26 | * Statistics entry for an FFmpeg execute session.
27 | */
28 | @interface Statistics : NSObject
29 |
30 | - (instancetype)init:(long)sessionId videoFrameNumber:(int)videoFrameNumber videoFps:(float)videoFps videoQuality:(float)videoQuality size:(int64_t)size time:(int)time bitrate:(double)bitrate speed:(double)speed;
31 |
32 | - (long)getSessionId;
33 |
34 | - (int)getVideoFrameNumber;
35 |
36 | - (float)getVideoFps;
37 |
38 | - (float)getVideoQuality;
39 |
40 | - (long)getSize;
41 |
42 | - (int)getTime;
43 |
44 | - (double)getBitrate;
45 |
46 | - (double)getSpeed;
47 |
48 | @end
49 |
50 | #endif // FFMPEG_KIT_STATISTICS_H
51 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Headers/StatisticsCallback.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2018-2021 Taner Sener
3 | *
4 | * This file is part of FFmpegKit.
5 | *
6 | * FFmpegKit is free software: you can redistribute it and/or modify
7 | * it under the terms of the GNU Lesser General Public License as published by
8 | * the Free Software Foundation, either version 3 of the License, or
9 | * (at your option) any later version.
10 | *
11 | * FFmpegKit is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | * GNU Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public License
17 | * along with FFmpegKit. If not, see .
18 | */
19 |
20 | #ifndef FFMPEG_KIT_STATISTICS_CALLBACK_H
21 | #define FFMPEG_KIT_STATISTICS_CALLBACK_H
22 |
23 | #import
24 | #import "Statistics.h"
25 |
26 | /**
27 | * Callback that receives statistics generated for FFmpegKit sessions.
28 | *
29 | * @param statistics statistics entry
30 | */
31 | typedef void (^StatisticsCallback)(Statistics* statistics);
32 |
33 | #endif // FFMPEG_KIT_STATISTICS_CALLBACK_H
34 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Headers/ffmpegkit_exception.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2018-2021 Taner Sener
3 | *
4 | * This file is part of FFmpegKit.
5 | *
6 | * FFmpegKit is free software: you can redistribute it and/or modify
7 | * it under the terms of the GNU Lesser General Public License as published by
8 | * the Free Software Foundation, either version 3 of the License, or
9 | * (at your option) any later version.
10 | *
11 | * FFmpegKit is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | * GNU Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public License
17 | * along with FFmpegKit. If not, see .
18 | */
19 |
20 | #ifndef FFMPEG_KIT_EXCEPTION_H
21 | #define FFMPEG_KIT_EXCEPTION_H
22 |
23 | #include
24 | #include
25 |
26 | /** Holds information to implement exception handling. */
27 | extern __thread jmp_buf ex_buf__;
28 |
29 | #endif // FFMPEG_KIT_EXCEPTION_H
30 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Modules/module.modulemap:
--------------------------------------------------------------------------------
1 | framework module ffmpegkit {
2 |
3 | header "AbstractSession.h"
4 | header "ArchDetect.h"
5 | header "AtomicLong.h"
6 | header "Chapter.h"
7 | header "FFmpegKit.h"
8 | header "FFmpegKitConfig.h"
9 | header "FFmpegSession.h"
10 | header "FFmpegSessionCompleteCallback.h"
11 | header "FFprobeKit.h"
12 | header "FFprobeSession.h"
13 | header "FFprobeSessionCompleteCallback.h"
14 | header "Level.h"
15 | header "Log.h"
16 | header "LogCallback.h"
17 | header "LogRedirectionStrategy.h"
18 | header "MediaInformation.h"
19 | header "MediaInformationJsonParser.h"
20 | header "MediaInformationSession.h"
21 | header "MediaInformationSessionCompleteCallback.h"
22 | header "Packages.h"
23 | header "ReturnCode.h"
24 | header "Session.h"
25 | header "SessionState.h"
26 | header "Statistics.h"
27 | header "StatisticsCallback.h"
28 | header "StreamInformation.h"
29 | header "ffmpegkit_exception.h"
30 |
31 | export *
32 | }
33 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Resources/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | ffmpegkit
9 | CFBundleIdentifier
10 | com.arthenica.ffmpegkit.FFmpegKit
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | ffmpegkit
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 5.1
19 | CFBundleVersion
20 | 5.1
21 | CFBundleSignature
22 | ????
23 | LSMinimumSystemVersion
24 | 10.15
25 | CFBundleSupportedPlatforms
26 |
27 | MacOSX
28 |
29 | NSPrincipalClass
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/Resources/SOURCE:
--------------------------------------------------------------------------------
1 | The source code of "FFmpegKit", "FFmpeg" and external libraries enabled within
2 | "FFmpeg" for this release can be downloaded from
3 | https://github.com/arthenica/ffmpeg-kit/wiki/Source page.
4 |
5 | If you want to receive the source code on physical media submit your request
6 | to "open-source@arthenica.com" email address.
7 |
8 | Your request should include "FFmpegKit" version, "FFmpegKit" platform, your
9 | name, your company name, your mailing address, the phone number and the date
10 | you started using "FFmpegKit".
11 |
12 | Note that we may charge you a fee to cover physical media printing and
13 | shipping costs. Your request must be sent within the first three years of the
14 | date you received "FFmpegKit" with "GPL v3.0" license.
15 |
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/ffmpegkit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inter-ops/Converter/181d6206741bed9a020bd05ec5e14dba4402f014/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/A/ffmpegkit
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/ffmpegkit.xcframework/macos-arm64_x86_64/ffmpegkit.framework/ffmpegkit:
--------------------------------------------------------------------------------
1 | Versions/Current/ffmpegkit
--------------------------------------------------------------------------------
/libavcodec.xcframework/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AvailableLibraries
6 |
7 |
8 | LibraryIdentifier
9 | macos-arm64_x86_64
10 | LibraryPath
11 | libavcodec.framework
12 | SupportedArchitectures
13 |
14 | arm64
15 | x86_64
16 |
17 | SupportedPlatform
18 | macos
19 |
20 |
21 | CFBundlePackageType
22 | XFWK
23 | XCFrameworkFormatVersion
24 | 1.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Headers:
--------------------------------------------------------------------------------
1 | Versions/Current/Headers
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Resources:
--------------------------------------------------------------------------------
1 | Versions/Current/Resources
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Headers/ac3_parser.h:
--------------------------------------------------------------------------------
1 | /*
2 | * AC-3 parser prototypes
3 | * Copyright (c) 2003 Fabrice Bellard
4 | * Copyright (c) 2003 Michael Niedermayer
5 | *
6 | * This file is part of FFmpeg.
7 | *
8 | * FFmpeg is free software; you can redistribute it and/or
9 | * modify it under the terms of the GNU Lesser General Public
10 | * License as published by the Free Software Foundation; either
11 | * version 2.1 of the License, or (at your option) any later version.
12 | *
13 | * FFmpeg is distributed in the hope that it will be useful,
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 | * Lesser General Public License for more details.
17 | *
18 | * You should have received a copy of the GNU Lesser General Public
19 | * License along with FFmpeg; if not, write to the Free Software
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 | */
22 |
23 | #ifndef AVCODEC_AC3_PARSER_H
24 | #define AVCODEC_AC3_PARSER_H
25 |
26 | #include
27 | #include
28 |
29 | /**
30 | * Extract the bitstream ID and the frame size from AC-3 data.
31 | */
32 | int av_ac3_parse_header(const uint8_t *buf, size_t size,
33 | uint8_t *bitstream_id, uint16_t *frame_size);
34 |
35 |
36 | #endif /* AVCODEC_AC3_PARSER_H */
37 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Headers/adts_parser.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef AVCODEC_ADTS_PARSER_H
20 | #define AVCODEC_ADTS_PARSER_H
21 |
22 | #include
23 | #include
24 |
25 | #define AV_AAC_ADTS_HEADER_SIZE 7
26 |
27 | /**
28 | * Extract the number of samples and frames from AAC data.
29 | * @param[in] buf pointer to AAC data buffer
30 | * @param[out] samples Pointer to where number of samples is written
31 | * @param[out] frames Pointer to where number of frames is written
32 | * @return Returns 0 on success, error code on failure.
33 | */
34 | int av_adts_header_parse(const uint8_t *buf, uint32_t *samples,
35 | uint8_t *frames);
36 |
37 | #endif /* AVCODEC_ADTS_PARSER_H */
38 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Headers/jni.h:
--------------------------------------------------------------------------------
1 | /*
2 | * JNI public API functions
3 | *
4 | * Copyright (c) 2015-2016 Matthieu Bouron
5 | *
6 | * This file is part of FFmpeg.
7 | *
8 | * FFmpeg is free software; you can redistribute it and/or
9 | * modify it under the terms of the GNU Lesser General Public
10 | * License as published by the Free Software Foundation; either
11 | * version 2.1 of the License, or (at your option) any later version.
12 | *
13 | * FFmpeg is distributed in the hope that it will be useful,
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 | * Lesser General Public License for more details.
17 | *
18 | * You should have received a copy of the GNU Lesser General Public
19 | * License along with FFmpeg; if not, write to the Free Software
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 | */
22 |
23 | #ifndef AVCODEC_JNI_H
24 | #define AVCODEC_JNI_H
25 |
26 | /*
27 | * Manually set a Java virtual machine which will be used to retrieve the JNI
28 | * environment. Once a Java VM is set it cannot be changed afterwards, meaning
29 | * you can call multiple times av_jni_set_java_vm with the same Java VM pointer
30 | * however it will error out if you try to set a different Java VM.
31 | *
32 | * @param vm Java virtual machine
33 | * @param log_ctx context used for logging, can be NULL
34 | * @return 0 on success, < 0 otherwise
35 | */
36 | int av_jni_set_java_vm(void *vm, void *log_ctx);
37 |
38 | /*
39 | * Get the Java virtual machine which has been set with av_jni_set_java_vm.
40 | *
41 | * @param vm Java virtual machine
42 | * @return a pointer to the Java virtual machine
43 | */
44 | void *av_jni_get_java_vm(void *log_ctx);
45 |
46 | #endif /* AVCODEC_JNI_H */
47 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Headers/version.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef AVCODEC_VERSION_H
20 | #define AVCODEC_VERSION_H
21 |
22 | /**
23 | * @file
24 | * @ingroup libavc
25 | * Libavcodec version macros.
26 | */
27 |
28 | #include "libavutil/version.h"
29 |
30 | #include "version_major.h"
31 |
32 | #define LIBAVCODEC_VERSION_MINOR 37
33 | #define LIBAVCODEC_VERSION_MICRO 100
34 |
35 | #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
36 | LIBAVCODEC_VERSION_MINOR, \
37 | LIBAVCODEC_VERSION_MICRO)
38 | #define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \
39 | LIBAVCODEC_VERSION_MINOR, \
40 | LIBAVCODEC_VERSION_MICRO)
41 | #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
42 |
43 | #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
44 |
45 | #endif /* AVCODEC_VERSION_H */
46 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | libavcodec
9 | CFBundleIdentifier
10 | com.arthenica.ffmpegkit.Libavcodec
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | libavcodec
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 59.37.100
19 | CFBundleVersion
20 | 59.37.100
21 | CFBundleSignature
22 | ????
23 | LSMinimumSystemVersion
24 | 10.15
25 | CFBundleSupportedPlatforms
26 |
27 | MacOSX
28 |
29 | NSPrincipalClass
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.DAV1D:
--------------------------------------------------------------------------------
1 | Copyright © 2018-2019, VideoLAN and dav1d authors
2 | All rights reserved.
3 |
4 | Redistribution and use in source and binary forms, with or without
5 | modification, are permitted provided that the following conditions are met:
6 |
7 | 1. Redistributions of source code must retain the above copyright notice, this
8 | list of conditions and the following disclaimer.
9 |
10 | 2. Redistributions in binary form must reproduce the above copyright notice,
11 | this list of conditions and the following disclaimer in the documentation
12 | and/or other materials provided with the distribution.
13 |
14 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
18 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.EXPAT:
--------------------------------------------------------------------------------
1 | Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper
2 | Copyright (c) 2001-2019 Expat maintainers
3 |
4 | Permission is hereby granted, free of charge, to any person obtaining
5 | a copy of this software and associated documentation files (the
6 | "Software"), to deal in the Software without restriction, including
7 | without limitation the rights to use, copy, modify, merge, publish,
8 | distribute, sublicense, and/or sell copies of the Software, and to
9 | permit persons to whom the Software is furnished to do so, subject to
10 | the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included
13 | in all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.GIFLIB:
--------------------------------------------------------------------------------
1 | The GIFLIB distribution is Copyright (c) 1997 Eric S. Raymond
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy
4 | of this software and associated documentation files (the "Software"), to deal
5 | in the Software without restriction, including without limitation the rights
6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 | copies of the Software, and to permit persons to whom the Software is
8 | furnished to do so, subject to the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be included in
11 | all copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 | THE SOFTWARE.
20 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.GNUTLS:
--------------------------------------------------------------------------------
1 | LICENSING
2 | =========
3 |
4 | Since GnuTLS version 3.1.10, the core library is released under
5 | the GNU Lesser General Public License (LGPL) version 2.1 or later
6 | (see doc/COPYING.LESSER for the license terms).
7 |
8 | The GNU LGPL applies to the main GnuTLS library, while the
9 | included applications as well as gnutls-openssl
10 | library are under the GNU GPL version 3. The gnutls library is
11 | located in the lib/ and libdane/ directories, while the applications
12 | in src/ and, the gnutls-openssl library is at extra/.
13 |
14 | The documentation in doc/ is under the GNU FDL license 1.3.
15 |
16 |
17 | Note, however, that the nettle and the gmp libraries which are
18 | GnuTLS dependencies, they are distributed under a LGPLv3+ or GPLv2+ dual
19 | license. As such binaries linking to them need to adhere to either LGPLv3+
20 | or the GPLv2+ license.
21 |
22 | For any copyright year range specified as YYYY-ZZZZ in this package
23 | note that the range specifies every single year in that closed interval.
24 |
25 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.KVAZAAR:
--------------------------------------------------------------------------------
1 | Copyright (c) 2021, Tampere University, ITU/ISO/IEC, project contributors
2 | All rights reserved.
3 |
4 | Redistribution and use in source and binary forms, with or without modification,
5 | are permitted provided that the following conditions are met:
6 |
7 | * Redistributions of source code must retain the above copyright notice, this
8 | list of conditions and the following disclaimer.
9 |
10 | * Redistributions in binary form must reproduce the above copyright notice, this
11 | list of conditions and the following disclaimer in the documentation and/or
12 | other materials provided with the distribution.
13 |
14 | * Neither the name of the Tampere University or ITU/ISO/IEC nor the names of its
15 | contributors may be used to endorse or promote products derived from
16 | this software without specific prior written permission.
17 |
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.LIBASS:
--------------------------------------------------------------------------------
1 | ISC License
2 |
3 | Copyright (C) 2006-2016 libass contributors
4 |
5 | Permission to use, copy, modify, and/or distribute this software for any
6 | purpose with or without fee is hereby granted, provided that the above
7 | copyright notice and this permission notice appear in all copies.
8 |
9 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.LIBILBC:
--------------------------------------------------------------------------------
1 | Copyright (c) 2011, The WebRTC project authors. All rights reserved.
2 |
3 | Redistribution and use in source and binary forms, with or without
4 | modification, are permitted provided that the following conditions are
5 | met:
6 |
7 | * Redistributions of source code must retain the above copyright
8 | notice, this list of conditions and the following disclaimer.
9 |
10 | * Redistributions in binary form must reproduce the above copyright
11 | notice, this list of conditions and the following disclaimer in
12 | the documentation and/or other materials provided with the
13 | distribution.
14 |
15 | * Neither the name of Google nor the names of its contributors may
16 | be used to endorse or promote products derived from this software
17 | without specific prior written permission.
18 |
19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.LIBOGG:
--------------------------------------------------------------------------------
1 | Copyright (c) 2002, Xiph.org Foundation
2 |
3 | Redistribution and use in source and binary forms, with or without
4 | modification, are permitted provided that the following conditions
5 | are met:
6 |
7 | - Redistributions of source code must retain the above copyright
8 | notice, this list of conditions and the following disclaimer.
9 |
10 | - Redistributions in binary form must reproduce the above copyright
11 | notice, this list of conditions and the following disclaimer in the
12 | documentation and/or other materials provided with the distribution.
13 |
14 | - Neither the name of the Xiph.org Foundation nor the names of its
15 | contributors may be used to endorse or promote products derived from
16 | this software without specific prior written permission.
17 |
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
22 | OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.LIBTHEORA:
--------------------------------------------------------------------------------
1 | Copyright (C) 2002-2009 Xiph.org Foundation
2 |
3 | Redistribution and use in source and binary forms, with or without
4 | modification, are permitted provided that the following conditions
5 | are met:
6 |
7 | - Redistributions of source code must retain the above copyright
8 | notice, this list of conditions and the following disclaimer.
9 |
10 | - Redistributions in binary form must reproduce the above copyright
11 | notice, this list of conditions and the following disclaimer in the
12 | documentation and/or other materials provided with the distribution.
13 |
14 | - Neither the name of the Xiph.org Foundation nor the names of its
15 | contributors may be used to endorse or promote products derived from
16 | this software without specific prior written permission.
17 |
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
22 | OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.LIBVORBIS:
--------------------------------------------------------------------------------
1 | Copyright (c) 2002-2020 Xiph.org Foundation
2 |
3 | Redistribution and use in source and binary forms, with or without
4 | modification, are permitted provided that the following conditions
5 | are met:
6 |
7 | - Redistributions of source code must retain the above copyright
8 | notice, this list of conditions and the following disclaimer.
9 |
10 | - Redistributions in binary form must reproduce the above copyright
11 | notice, this list of conditions and the following disclaimer in the
12 | documentation and/or other materials provided with the distribution.
13 |
14 | - Neither the name of the Xiph.org Foundation nor the names of its
15 | contributors may be used to endorse or promote products derived from
16 | this software without specific prior written permission.
17 |
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
22 | OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.LIBVPX:
--------------------------------------------------------------------------------
1 | Copyright (c) 2010, The WebM Project authors. All rights reserved.
2 |
3 | Redistribution and use in source and binary forms, with or without
4 | modification, are permitted provided that the following conditions are
5 | met:
6 |
7 | * Redistributions of source code must retain the above copyright
8 | notice, this list of conditions and the following disclaimer.
9 |
10 | * Redistributions in binary form must reproduce the above copyright
11 | notice, this list of conditions and the following disclaimer in
12 | the documentation and/or other materials provided with the
13 | distribution.
14 |
15 | * Neither the name of Google, nor the WebM Project, nor the names
16 | of its contributors may be used to endorse or promote products
17 | derived from this software without specific prior written
18 | permission.
19 |
20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 |
32 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.LIBWEBP:
--------------------------------------------------------------------------------
1 | Copyright (c) 2010, Google Inc. All rights reserved.
2 |
3 | Redistribution and use in source and binary forms, with or without
4 | modification, are permitted provided that the following conditions are
5 | met:
6 |
7 | * Redistributions of source code must retain the above copyright
8 | notice, this list of conditions and the following disclaimer.
9 |
10 | * Redistributions in binary form must reproduce the above copyright
11 | notice, this list of conditions and the following disclaimer in
12 | the documentation and/or other materials provided with the
13 | distribution.
14 |
15 | * Neither the name of Google nor the names of its contributors may
16 | be used to endorse or promote products derived from this software
17 | without specific prior written permission.
18 |
19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 |
31 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.LIBXML2:
--------------------------------------------------------------------------------
1 | Except where otherwise noted in the source code (e.g. the files hash.c,
2 | list.c and the trio files, which are covered by a similar licence but
3 | with different Copyright notices) all the files are:
4 |
5 | Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy
8 | of this software and associated documentation files (the "Software"), to deal
9 | in the Software without restriction, including without limitation the rights
10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 | copies of the Software, and to permit persons to whom the Software is fur-
12 | nished to do so, subject to the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be included in
15 | all copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
19 | NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 | THE SOFTWARE.
24 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.TIFF:
--------------------------------------------------------------------------------
1 | Copyright (c) 1988-1997 Sam Leffler
2 | Copyright (c) 1991-1997 Silicon Graphics, Inc.
3 |
4 | Permission to use, copy, modify, distribute, and sell this software and
5 | its documentation for any purpose is hereby granted without fee, provided
6 | that (i) the above copyright notices and this permission notice appear in
7 | all copies of the software and related documentation, and (ii) the names of
8 | Sam Leffler and Silicon Graphics may not be used in any advertising or
9 | publicity relating to the software without the specific, prior written
10 | permission of Sam Leffler and Silicon Graphics.
11 |
12 | THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
13 | EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
14 | WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
15 |
16 | IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
17 | ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
18 | OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
19 | WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
20 | LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
21 | OF THIS SOFTWARE.
22 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/Resources/LICENSE.ZIMG:
--------------------------------------------------------------------------------
1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
2 | Version 2, December 2004
3 |
4 | Copyright (C) 2004 Sam Hocevar
5 |
6 | Everyone is permitted to copy and distribute verbatim or modified
7 | copies of this license document, and changing it is allowed as long
8 | as the name is changed.
9 |
10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
12 |
13 | 0. You just DO WHAT THE FUCK YOU WANT TO.
14 |
15 |
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/libavcodec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inter-ops/Converter/181d6206741bed9a020bd05ec5e14dba4402f014/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/A/libavcodec
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/libavcodec.xcframework/macos-arm64_x86_64/libavcodec.framework/libavcodec:
--------------------------------------------------------------------------------
1 | Versions/Current/libavcodec
--------------------------------------------------------------------------------
/libavdevice.xcframework/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AvailableLibraries
6 |
7 |
8 | LibraryIdentifier
9 | macos-arm64_x86_64
10 | LibraryPath
11 | libavdevice.framework
12 | SupportedArchitectures
13 |
14 | arm64
15 | x86_64
16 |
17 | SupportedPlatform
18 | macos
19 |
20 |
21 | CFBundlePackageType
22 | XFWK
23 | XCFrameworkFormatVersion
24 | 1.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/Headers:
--------------------------------------------------------------------------------
1 | Versions/Current/Headers
--------------------------------------------------------------------------------
/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/Resources:
--------------------------------------------------------------------------------
1 | Versions/Current/Resources
--------------------------------------------------------------------------------
/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/Versions/A/Headers/version.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef AVDEVICE_VERSION_H
20 | #define AVDEVICE_VERSION_H
21 |
22 | /**
23 | * @file
24 | * @ingroup lavd
25 | * Libavdevice version macros
26 | */
27 |
28 | #include "libavutil/version.h"
29 |
30 | #include "version_major.h"
31 |
32 | #define LIBAVDEVICE_VERSION_MINOR 7
33 | #define LIBAVDEVICE_VERSION_MICRO 100
34 |
35 | #define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \
36 | LIBAVDEVICE_VERSION_MINOR, \
37 | LIBAVDEVICE_VERSION_MICRO)
38 | #define LIBAVDEVICE_VERSION AV_VERSION(LIBAVDEVICE_VERSION_MAJOR, \
39 | LIBAVDEVICE_VERSION_MINOR, \
40 | LIBAVDEVICE_VERSION_MICRO)
41 | #define LIBAVDEVICE_BUILD LIBAVDEVICE_VERSION_INT
42 |
43 | #define LIBAVDEVICE_IDENT "Lavd" AV_STRINGIFY(LIBAVDEVICE_VERSION)
44 |
45 | #endif /* AVDEVICE_VERSION_H */
46 |
--------------------------------------------------------------------------------
/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/Versions/A/Headers/version_major.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef AVDEVICE_VERSION_MAJOR_H
20 | #define AVDEVICE_VERSION_MAJOR_H
21 |
22 | /**
23 | * @file
24 | * @ingroup lavd
25 | * Libavdevice version macros
26 | */
27 |
28 | #define LIBAVDEVICE_VERSION_MAJOR 59
29 |
30 | /**
31 | * FF_API_* defines may be placed below to indicate public API that will be
32 | * dropped at a future version bump. The defines themselves are not part of
33 | * the public API and may change, break or disappear at any time.
34 | */
35 | #define FF_API_DEVICE_CAPABILITIES (LIBAVDEVICE_VERSION_MAJOR < 60)
36 |
37 | #endif /* AVDEVICE_VERSION_MAJOR_H */
38 |
--------------------------------------------------------------------------------
/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/Versions/A/Resources/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | libavdevice
9 | CFBundleIdentifier
10 | com.arthenica.ffmpegkit.Libavdevice
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | libavdevice
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 59.7.100
19 | CFBundleVersion
20 | 59.7.100
21 | CFBundleSignature
22 | ????
23 | LSMinimumSystemVersion
24 | 10.15
25 | CFBundleSupportedPlatforms
26 |
27 | MacOSX
28 |
29 | NSPrincipalClass
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/Versions/A/libavdevice:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inter-ops/Converter/181d6206741bed9a020bd05ec5e14dba4402f014/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/Versions/A/libavdevice
--------------------------------------------------------------------------------
/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/libavdevice.xcframework/macos-arm64_x86_64/libavdevice.framework/libavdevice:
--------------------------------------------------------------------------------
1 | Versions/Current/libavdevice
--------------------------------------------------------------------------------
/libavfilter.xcframework/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AvailableLibraries
6 |
7 |
8 | LibraryIdentifier
9 | macos-arm64_x86_64
10 | LibraryPath
11 | libavfilter.framework
12 | SupportedArchitectures
13 |
14 | arm64
15 | x86_64
16 |
17 | SupportedPlatform
18 | macos
19 |
20 |
21 | CFBundlePackageType
22 | XFWK
23 | XCFrameworkFormatVersion
24 | 1.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/Headers:
--------------------------------------------------------------------------------
1 | Versions/Current/Headers
--------------------------------------------------------------------------------
/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/Resources:
--------------------------------------------------------------------------------
1 | Versions/Current/Resources
--------------------------------------------------------------------------------
/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/Versions/A/Headers/version.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Version macros.
3 | *
4 | * This file is part of FFmpeg.
5 | *
6 | * FFmpeg is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * FFmpeg is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with FFmpeg; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef AVFILTER_VERSION_H
22 | #define AVFILTER_VERSION_H
23 |
24 | /**
25 | * @file
26 | * @ingroup lavfi
27 | * Libavfilter version macros
28 | */
29 |
30 | #include "libavutil/version.h"
31 |
32 | #include "version_major.h"
33 |
34 | #define LIBAVFILTER_VERSION_MINOR 44
35 | #define LIBAVFILTER_VERSION_MICRO 100
36 |
37 |
38 | #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
39 | LIBAVFILTER_VERSION_MINOR, \
40 | LIBAVFILTER_VERSION_MICRO)
41 | #define LIBAVFILTER_VERSION AV_VERSION(LIBAVFILTER_VERSION_MAJOR, \
42 | LIBAVFILTER_VERSION_MINOR, \
43 | LIBAVFILTER_VERSION_MICRO)
44 | #define LIBAVFILTER_BUILD LIBAVFILTER_VERSION_INT
45 |
46 | #define LIBAVFILTER_IDENT "Lavfi" AV_STRINGIFY(LIBAVFILTER_VERSION)
47 |
48 | #endif /* AVFILTER_VERSION_H */
49 |
--------------------------------------------------------------------------------
/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/Versions/A/Headers/version_major.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Version macros.
3 | *
4 | * This file is part of FFmpeg.
5 | *
6 | * FFmpeg is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * FFmpeg is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with FFmpeg; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef AVFILTER_VERSION_MAJOR_H
22 | #define AVFILTER_VERSION_MAJOR_H
23 |
24 | /**
25 | * @file
26 | * @ingroup lavfi
27 | * Libavfilter version macros
28 | */
29 |
30 | #define LIBAVFILTER_VERSION_MAJOR 8
31 |
32 | /**
33 | * FF_API_* defines may be placed below to indicate public API that will be
34 | * dropped at a future version bump. The defines themselves are not part of
35 | * the public API and may change, break or disappear at any time.
36 | */
37 |
38 | #define FF_API_SWS_PARAM_OPTION (LIBAVFILTER_VERSION_MAJOR < 9)
39 | #define FF_API_BUFFERSINK_ALLOC (LIBAVFILTER_VERSION_MAJOR < 9)
40 | #define FF_API_PAD_COUNT (LIBAVFILTER_VERSION_MAJOR < 9)
41 |
42 | #endif /* AVFILTER_VERSION_MAJOR_H */
43 |
--------------------------------------------------------------------------------
/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/Versions/A/Resources/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | libavfilter
9 | CFBundleIdentifier
10 | com.arthenica.ffmpegkit.Libavfilter
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | libavfilter
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 8.44.100
19 | CFBundleVersion
20 | 8.44.100
21 | CFBundleSignature
22 | ????
23 | LSMinimumSystemVersion
24 | 10.15
25 | CFBundleSupportedPlatforms
26 |
27 | MacOSX
28 |
29 | NSPrincipalClass
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/Versions/A/libavfilter:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inter-ops/Converter/181d6206741bed9a020bd05ec5e14dba4402f014/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/Versions/A/libavfilter
--------------------------------------------------------------------------------
/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/libavfilter.xcframework/macos-arm64_x86_64/libavfilter.framework/libavfilter:
--------------------------------------------------------------------------------
1 | Versions/Current/libavfilter
--------------------------------------------------------------------------------
/libavformat.xcframework/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AvailableLibraries
6 |
7 |
8 | LibraryIdentifier
9 | macos-arm64_x86_64
10 | LibraryPath
11 | libavformat.framework
12 | SupportedArchitectures
13 |
14 | arm64
15 | x86_64
16 |
17 | SupportedPlatform
18 | macos
19 |
20 |
21 | CFBundlePackageType
22 | XFWK
23 | XCFrameworkFormatVersion
24 | 1.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/libavformat.xcframework/macos-arm64_x86_64/libavformat.framework/Headers:
--------------------------------------------------------------------------------
1 | Versions/Current/Headers
--------------------------------------------------------------------------------
/libavformat.xcframework/macos-arm64_x86_64/libavformat.framework/Resources:
--------------------------------------------------------------------------------
1 | Versions/Current/Resources
--------------------------------------------------------------------------------
/libavformat.xcframework/macos-arm64_x86_64/libavformat.framework/Versions/A/Headers/version.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Version macros.
3 | *
4 | * This file is part of FFmpeg.
5 | *
6 | * FFmpeg is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * FFmpeg is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with FFmpeg; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef AVFORMAT_VERSION_H
22 | #define AVFORMAT_VERSION_H
23 |
24 | /**
25 | * @file
26 | * @ingroup libavf
27 | * Libavformat version macros
28 | */
29 |
30 | #include "libavutil/version.h"
31 |
32 | #include "version_major.h"
33 |
34 | #define LIBAVFORMAT_VERSION_MINOR 27
35 | #define LIBAVFORMAT_VERSION_MICRO 100
36 |
37 | #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
38 | LIBAVFORMAT_VERSION_MINOR, \
39 | LIBAVFORMAT_VERSION_MICRO)
40 | #define LIBAVFORMAT_VERSION AV_VERSION(LIBAVFORMAT_VERSION_MAJOR, \
41 | LIBAVFORMAT_VERSION_MINOR, \
42 | LIBAVFORMAT_VERSION_MICRO)
43 | #define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT
44 |
45 | #define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
46 |
47 | #endif /* AVFORMAT_VERSION_H */
48 |
--------------------------------------------------------------------------------
/libavformat.xcframework/macos-arm64_x86_64/libavformat.framework/Versions/A/Resources/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | libavformat
9 | CFBundleIdentifier
10 | com.arthenica.ffmpegkit.Libavformat
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | libavformat
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 59.27.100
19 | CFBundleVersion
20 | 59.27.100
21 | CFBundleSignature
22 | ????
23 | LSMinimumSystemVersion
24 | 10.15
25 | CFBundleSupportedPlatforms
26 |
27 | MacOSX
28 |
29 | NSPrincipalClass
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/libavformat.xcframework/macos-arm64_x86_64/libavformat.framework/Versions/A/libavformat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inter-ops/Converter/181d6206741bed9a020bd05ec5e14dba4402f014/libavformat.xcframework/macos-arm64_x86_64/libavformat.framework/Versions/A/libavformat
--------------------------------------------------------------------------------
/libavformat.xcframework/macos-arm64_x86_64/libavformat.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/libavformat.xcframework/macos-arm64_x86_64/libavformat.framework/libavformat:
--------------------------------------------------------------------------------
1 | Versions/Current/libavformat
--------------------------------------------------------------------------------
/libavutil.xcframework/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AvailableLibraries
6 |
7 |
8 | LibraryIdentifier
9 | macos-arm64_x86_64
10 | LibraryPath
11 | libavutil.framework
12 | SupportedArchitectures
13 |
14 | arm64
15 | x86_64
16 |
17 | SupportedPlatform
18 | macos
19 |
20 |
21 | CFBundlePackageType
22 | XFWK
23 | XCFrameworkFormatVersion
24 | 1.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Headers:
--------------------------------------------------------------------------------
1 | Versions/Current/Headers
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Resources:
--------------------------------------------------------------------------------
1 | Versions/Current/Resources
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/aarch64/timer.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2015 Janne Grunau
3 | *
4 | * This file is part of FFmpeg.
5 | *
6 | * FFmpeg is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * FFmpeg is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with FFmpeg; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef AVUTIL_AARCH64_TIMER_H
22 | #define AVUTIL_AARCH64_TIMER_H
23 |
24 | #include
25 | #include "config.h"
26 |
27 | #if defined(__APPLE__)
28 |
29 | #include
30 |
31 | #define AV_READ_TIME mach_absolute_time
32 |
33 | #elif HAVE_INLINE_ASM
34 |
35 | #define AV_READ_TIME read_time
36 |
37 | static inline uint64_t read_time(void)
38 | {
39 | uint64_t cycle_counter;
40 | __asm__ volatile(
41 | "isb \t\n"
42 | "mrs %0, pmccntr_el0 "
43 | : "=r"(cycle_counter) :: "memory" );
44 |
45 | return cycle_counter;
46 | }
47 |
48 | #endif /* HAVE_INLINE_ASM */
49 |
50 | #endif /* AVUTIL_AARCH64_TIMER_H */
51 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/arm/timer.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009 Mans Rullgard
3 | *
4 | * This file is part of FFmpeg.
5 | *
6 | * FFmpeg is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * FFmpeg is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with FFmpeg; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef AVUTIL_ARM_TIMER_H
22 | #define AVUTIL_ARM_TIMER_H
23 |
24 | #include
25 | #include "config.h"
26 |
27 | #if defined(__APPLE__)
28 |
29 | #include
30 |
31 | #define AV_READ_TIME mach_absolute_time
32 |
33 | #elif HAVE_INLINE_ASM && defined(__ARM_ARCH_7A__)
34 |
35 | #define AV_READ_TIME read_time
36 |
37 | static inline uint64_t read_time(void)
38 | {
39 | unsigned cc;
40 | __asm__ volatile ("mrc p15, 0, %0, c9, c13, 0" : "=r"(cc));
41 | return cc;
42 | }
43 |
44 | #endif /* HAVE_INLINE_ASM && __ARM_ARCH_7A__ */
45 |
46 | #endif /* AVUTIL_ARM_TIMER_H */
47 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/avconfig.h:
--------------------------------------------------------------------------------
1 | /* Generated by ffmpeg configure */
2 | #ifndef AVUTIL_AVCONFIG_H
3 | #define AVUTIL_AVCONFIG_H
4 | #define AV_HAVE_BIGENDIAN 0
5 | #define AV_HAVE_FAST_UNALIGNED 1
6 | #endif /* AVUTIL_AVCONFIG_H */
7 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/ffversion.h:
--------------------------------------------------------------------------------
1 | /* Automatically generated by version.sh, do not manually edit! */
2 | #ifndef AVUTIL_FFVERSION_H
3 | #define AVUTIL_FFVERSION_H
4 | #define FFMPEG_VERSION "n5.1.2"
5 | #endif /* AVUTIL_FFVERSION_H */
6 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/hwcontext_mediacodec.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef AVUTIL_HWCONTEXT_MEDIACODEC_H
20 | #define AVUTIL_HWCONTEXT_MEDIACODEC_H
21 |
22 | /**
23 | * MediaCodec details.
24 | *
25 | * Allocated as AVHWDeviceContext.hwctx
26 | */
27 | typedef struct AVMediaCodecDeviceContext {
28 | /**
29 | * android/view/Surface handle, to be filled by the user.
30 | *
31 | * This is the default surface used by decoders on this device.
32 | */
33 | void *surface;
34 | } AVMediaCodecDeviceContext;
35 |
36 | #endif /* AVUTIL_HWCONTEXT_MEDIACODEC_H */
37 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/hwcontext_qsv.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef AVUTIL_HWCONTEXT_QSV_H
20 | #define AVUTIL_HWCONTEXT_QSV_H
21 |
22 | #include
23 |
24 | /**
25 | * @file
26 | * An API-specific header for AV_HWDEVICE_TYPE_QSV.
27 | *
28 | * This API does not support dynamic frame pools. AVHWFramesContext.pool must
29 | * contain AVBufferRefs whose data pointer points to an mfxFrameSurface1 struct.
30 | */
31 |
32 | /**
33 | * This struct is allocated as AVHWDeviceContext.hwctx
34 | */
35 | typedef struct AVQSVDeviceContext {
36 | mfxSession session;
37 | } AVQSVDeviceContext;
38 |
39 | /**
40 | * This struct is allocated as AVHWFramesContext.hwctx
41 | */
42 | typedef struct AVQSVFramesContext {
43 | mfxFrameSurface1 *surfaces;
44 | int nb_surfaces;
45 |
46 | /**
47 | * A combination of MFX_MEMTYPE_* describing the frame pool.
48 | */
49 | int frame_type;
50 | } AVQSVFramesContext;
51 |
52 | #endif /* AVUTIL_HWCONTEXT_QSV_H */
53 |
54 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/hwcontext_vdpau.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef AVUTIL_HWCONTEXT_VDPAU_H
20 | #define AVUTIL_HWCONTEXT_VDPAU_H
21 |
22 | #include
23 |
24 | /**
25 | * @file
26 | * An API-specific header for AV_HWDEVICE_TYPE_VDPAU.
27 | *
28 | * This API supports dynamic frame pools. AVHWFramesContext.pool must return
29 | * AVBufferRefs whose data pointer is a VdpVideoSurface.
30 | */
31 |
32 | /**
33 | * This struct is allocated as AVHWDeviceContext.hwctx
34 | */
35 | typedef struct AVVDPAUDeviceContext {
36 | VdpDevice device;
37 | VdpGetProcAddress *get_proc_address;
38 | } AVVDPAUDeviceContext;
39 |
40 | /**
41 | * AVHWFramesContext.hwctx is currently not used
42 | */
43 |
44 | #endif /* AVUTIL_HWCONTEXT_VDPAU_H */
45 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/random_seed.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009 Baptiste Coudurier
3 | *
4 | * This file is part of FFmpeg.
5 | *
6 | * FFmpeg is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * FFmpeg is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with FFmpeg; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef AVUTIL_RANDOM_SEED_H
22 | #define AVUTIL_RANDOM_SEED_H
23 |
24 | #include
25 | /**
26 | * @addtogroup lavu_crypto
27 | * @{
28 | */
29 |
30 | /**
31 | * Get a seed to use in conjunction with random functions.
32 | * This function tries to provide a good seed at a best effort bases.
33 | * Its possible to call this function multiple times if more bits are needed.
34 | * It can be quite slow, which is why it should only be used as seed for a faster
35 | * PRNG. The quality of the seed depends on the platform.
36 | */
37 | uint32_t av_get_random_seed(void);
38 |
39 | /**
40 | * @}
41 | */
42 |
43 | #endif /* AVUTIL_RANDOM_SEED_H */
44 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/replaygain.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef AVUTIL_REPLAYGAIN_H
20 | #define AVUTIL_REPLAYGAIN_H
21 |
22 | #include
23 |
24 | /**
25 | * ReplayGain information (see
26 | * http://wiki.hydrogenaudio.org/index.php?title=ReplayGain_1.0_specification).
27 | * The size of this struct is a part of the public ABI.
28 | */
29 | typedef struct AVReplayGain {
30 | /**
31 | * Track replay gain in microbels (divide by 100000 to get the value in dB).
32 | * Should be set to INT32_MIN when unknown.
33 | */
34 | int32_t track_gain;
35 | /**
36 | * Peak track amplitude, with 100000 representing full scale (but values
37 | * may overflow). 0 when unknown.
38 | */
39 | uint32_t track_peak;
40 | /**
41 | * Same as track_gain, but for the whole album.
42 | */
43 | int32_t album_gain;
44 | /**
45 | * Same as track_peak, but for the whole album,
46 | */
47 | uint32_t album_peak;
48 | } AVReplayGain;
49 |
50 | #endif /* AVUTIL_REPLAYGAIN_H */
51 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/reverse.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2002-2004 Michael Niedermayer
3 | *
4 | * This file is part of FFmpeg.
5 | *
6 | * FFmpeg is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * FFmpeg is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with FFmpeg; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef AVUTIL_REVERSE_H
22 | #define AVUTIL_REVERSE_H
23 |
24 | #include
25 |
26 | extern const uint8_t ff_reverse[256];
27 |
28 | #endif /* AVUTIL_REVERSE_H */
29 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Headers/x86/timer.h:
--------------------------------------------------------------------------------
1 | /*
2 | * copyright (c) 2006 Michael Niedermayer
3 | *
4 | * This file is part of FFmpeg.
5 | *
6 | * FFmpeg is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * FFmpeg is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with FFmpeg; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef AVUTIL_X86_TIMER_H
22 | #define AVUTIL_X86_TIMER_H
23 |
24 | #include
25 |
26 | #if HAVE_INLINE_ASM
27 |
28 | #define FF_TIMER_UNITS "decicycles"
29 | #define AV_READ_TIME read_time
30 |
31 | static inline uint64_t read_time(void)
32 | {
33 | uint32_t a, d;
34 | __asm__ volatile(
35 | #if ARCH_X86_64 || defined(__SSE2__)
36 | "lfence \n\t"
37 | #endif
38 | "rdtsc \n\t"
39 | : "=a" (a), "=d" (d));
40 | return ((uint64_t)d << 32) + a;
41 | }
42 |
43 | #elif HAVE_RDTSC
44 |
45 | #include
46 | #define AV_READ_TIME __rdtsc
47 |
48 | #endif /* HAVE_INLINE_ASM */
49 |
50 | #endif /* AVUTIL_X86_TIMER_H */
51 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/Resources/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | libavutil
9 | CFBundleIdentifier
10 | com.arthenica.ffmpegkit.Libavutil
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | libavutil
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 57.28.100
19 | CFBundleVersion
20 | 57.28.100
21 | CFBundleSignature
22 | ????
23 | LSMinimumSystemVersion
24 | 10.15
25 | CFBundleSupportedPlatforms
26 |
27 | MacOSX
28 |
29 | NSPrincipalClass
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/libavutil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inter-ops/Converter/181d6206741bed9a020bd05ec5e14dba4402f014/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/A/libavutil
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/libavutil.xcframework/macos-arm64_x86_64/libavutil.framework/libavutil:
--------------------------------------------------------------------------------
1 | Versions/Current/libavutil
--------------------------------------------------------------------------------
/libswresample.xcframework/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AvailableLibraries
6 |
7 |
8 | LibraryIdentifier
9 | macos-arm64_x86_64
10 | LibraryPath
11 | libswresample.framework
12 | SupportedArchitectures
13 |
14 | arm64
15 | x86_64
16 |
17 | SupportedPlatform
18 | macos
19 |
20 |
21 | CFBundlePackageType
22 | XFWK
23 | XCFrameworkFormatVersion
24 | 1.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/libswresample.xcframework/macos-arm64_x86_64/libswresample.framework/Headers:
--------------------------------------------------------------------------------
1 | Versions/Current/Headers
--------------------------------------------------------------------------------
/libswresample.xcframework/macos-arm64_x86_64/libswresample.framework/Resources:
--------------------------------------------------------------------------------
1 | Versions/Current/Resources
--------------------------------------------------------------------------------
/libswresample.xcframework/macos-arm64_x86_64/libswresample.framework/Versions/A/Headers/version_major.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Version macros.
3 | *
4 | * This file is part of libswresample
5 | *
6 | * libswresample is free software; you can redistribute it and/or
7 | * modify it under the terms of the GNU Lesser General Public
8 | * License as published by the Free Software Foundation; either
9 | * version 2.1 of the License, or (at your option) any later version.
10 | *
11 | * libswresample is distributed in the hope that it will be useful,
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 | * Lesser General Public License for more details.
15 | *
16 | * You should have received a copy of the GNU Lesser General Public
17 | * License along with libswresample; if not, write to the Free Software
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 | */
20 |
21 | #ifndef SWRESAMPLE_VERSION_MAJOR_H
22 | #define SWRESAMPLE_VERSION_MAJOR_H
23 |
24 | /**
25 | * @file
26 | * Libswresample version macros
27 | */
28 |
29 | #define LIBSWRESAMPLE_VERSION_MAJOR 4
30 |
31 | #endif /* SWRESAMPLE_VERSION_MAJOR_H */
32 |
--------------------------------------------------------------------------------
/libswresample.xcframework/macos-arm64_x86_64/libswresample.framework/Versions/A/Resources/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | libswresample
9 | CFBundleIdentifier
10 | com.arthenica.ffmpegkit.Libswresample
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | libswresample
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 4.7.100
19 | CFBundleVersion
20 | 4.7.100
21 | CFBundleSignature
22 | ????
23 | LSMinimumSystemVersion
24 | 10.15
25 | CFBundleSupportedPlatforms
26 |
27 | MacOSX
28 |
29 | NSPrincipalClass
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/libswresample.xcframework/macos-arm64_x86_64/libswresample.framework/Versions/A/libswresample:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inter-ops/Converter/181d6206741bed9a020bd05ec5e14dba4402f014/libswresample.xcframework/macos-arm64_x86_64/libswresample.framework/Versions/A/libswresample
--------------------------------------------------------------------------------
/libswresample.xcframework/macos-arm64_x86_64/libswresample.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/libswresample.xcframework/macos-arm64_x86_64/libswresample.framework/libswresample:
--------------------------------------------------------------------------------
1 | Versions/Current/libswresample
--------------------------------------------------------------------------------
/libswscale.xcframework/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AvailableLibraries
6 |
7 |
8 | LibraryIdentifier
9 | macos-arm64_x86_64
10 | LibraryPath
11 | libswscale.framework
12 | SupportedArchitectures
13 |
14 | arm64
15 | x86_64
16 |
17 | SupportedPlatform
18 | macos
19 |
20 |
21 | CFBundlePackageType
22 | XFWK
23 | XCFrameworkFormatVersion
24 | 1.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/Headers:
--------------------------------------------------------------------------------
1 | Versions/Current/Headers
--------------------------------------------------------------------------------
/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/Resources:
--------------------------------------------------------------------------------
1 | Versions/Current/Resources
--------------------------------------------------------------------------------
/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/Versions/A/Headers/version.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef SWSCALE_VERSION_H
20 | #define SWSCALE_VERSION_H
21 |
22 | /**
23 | * @file
24 | * swscale version macros
25 | */
26 |
27 | #include "libavutil/version.h"
28 |
29 | #include "version_major.h"
30 |
31 | #define LIBSWSCALE_VERSION_MINOR 7
32 | #define LIBSWSCALE_VERSION_MICRO 100
33 |
34 | #define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \
35 | LIBSWSCALE_VERSION_MINOR, \
36 | LIBSWSCALE_VERSION_MICRO)
37 | #define LIBSWSCALE_VERSION AV_VERSION(LIBSWSCALE_VERSION_MAJOR, \
38 | LIBSWSCALE_VERSION_MINOR, \
39 | LIBSWSCALE_VERSION_MICRO)
40 | #define LIBSWSCALE_BUILD LIBSWSCALE_VERSION_INT
41 |
42 | #define LIBSWSCALE_IDENT "SwS" AV_STRINGIFY(LIBSWSCALE_VERSION)
43 |
44 | #endif /* SWSCALE_VERSION_H */
45 |
--------------------------------------------------------------------------------
/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/Versions/A/Headers/version_major.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of FFmpeg.
3 | *
4 | * FFmpeg is free software; you can redistribute it and/or
5 | * modify it under the terms of the GNU Lesser General Public
6 | * License as published by the Free Software Foundation; either
7 | * version 2.1 of the License, or (at your option) any later version.
8 | *
9 | * FFmpeg is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 | * Lesser General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU Lesser General Public
15 | * License along with FFmpeg; if not, write to the Free Software
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 | */
18 |
19 | #ifndef SWSCALE_VERSION_MAJOR_H
20 | #define SWSCALE_VERSION_MAJOR_H
21 |
22 | /**
23 | * @file
24 | * swscale version macros
25 | */
26 |
27 | #define LIBSWSCALE_VERSION_MAJOR 6
28 |
29 | /**
30 | * FF_API_* defines may be placed below to indicate public API that will be
31 | * dropped at a future version bump. The defines themselves are not part of
32 | * the public API and may change, break or disappear at any time.
33 | */
34 |
35 | #endif /* SWSCALE_VERSION_MAJOR_H */
36 |
--------------------------------------------------------------------------------
/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/Versions/A/Resources/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | libswscale
9 | CFBundleIdentifier
10 | com.arthenica.ffmpegkit.Libswscale
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | libswscale
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 6.7.100
19 | CFBundleVersion
20 | 6.7.100
21 | CFBundleSignature
22 | ????
23 | LSMinimumSystemVersion
24 | 10.15
25 | CFBundleSupportedPlatforms
26 |
27 | MacOSX
28 |
29 | NSPrincipalClass
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/Versions/A/libswscale:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inter-ops/Converter/181d6206741bed9a020bd05ec5e14dba4402f014/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/Versions/A/libswscale
--------------------------------------------------------------------------------
/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/Versions/Current:
--------------------------------------------------------------------------------
1 | A
--------------------------------------------------------------------------------
/libswscale.xcframework/macos-arm64_x86_64/libswscale.framework/libswscale:
--------------------------------------------------------------------------------
1 | Versions/Current/libswscale
--------------------------------------------------------------------------------