mirror of
https://github.com/barry-ran/QtScrcpy.git
synced 2025-08-01 21:38:40 +00:00
feat: change ffmpeg to 4.1.3
This commit is contained in:
parent
6c5b0ac5be
commit
10d1bf11b5
48 changed files with 124 additions and 17 deletions
|
@ -41,7 +41,7 @@ typedef struct AVSubsampleEncryptionInfo {
|
|||
* The size of this struct is not part of the public ABI.
|
||||
*/
|
||||
typedef struct AVEncryptionInfo {
|
||||
/** The fourcc encryption scheme. */
|
||||
/** The fourcc encryption scheme, in big-endian byte order. */
|
||||
uint32_t scheme;
|
||||
|
||||
/**
|
||||
|
@ -115,6 +115,11 @@ typedef struct AVEncryptionInitInfo {
|
|||
*/
|
||||
uint8_t* data;
|
||||
uint32_t data_size;
|
||||
|
||||
/**
|
||||
* An optional pointer to the next initialization info in the list.
|
||||
*/
|
||||
struct AVEncryptionInitInfo *next;
|
||||
} AVEncryptionInitInfo;
|
||||
|
||||
/**
|
||||
|
@ -124,7 +129,7 @@ typedef struct AVEncryptionInitInfo {
|
|||
*
|
||||
* @param subsample_count The number of subsamples.
|
||||
* @param key_id_size The number of bytes in the key ID, should be 16.
|
||||
* @param key_id_size The number of bytes in the IV, should be 16.
|
||||
* @param iv_size The number of bytes in the IV, should be 16.
|
||||
*
|
||||
* @return The new AVEncryptionInfo structure, or NULL on error.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue