mirror of https://git.ffmpeg.org/ffmpeg.git
ffmpeg: add ui64 type to SpecifierOpt
Adds ui64 (uint64_t) as a possible type for SpecifierOpt. This enables use of uint64_t options with SpecifierOpt such as channel_layout when expressed as a 64 bit channel mask. Signed-off-by: pkviet <pkv.stream@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
54486e3f09
commit
77b6e3ee27
|
@ -155,6 +155,7 @@ typedef struct SpecifierOpt {
|
||||||
uint8_t *str;
|
uint8_t *str;
|
||||||
int i;
|
int i;
|
||||||
int64_t i64;
|
int64_t i64;
|
||||||
|
uint64_t ui64;
|
||||||
float f;
|
float f;
|
||||||
double dbl;
|
double dbl;
|
||||||
} u;
|
} u;
|
||||||
|
|
Loading…
Reference in New Issue