mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/mov: use AV_OPT_TYPE_BOOL for export_{all,xmp} options
This commit is contained in:
parent
7434b9f66f
commit
a84613b4c2
|
@ -4736,9 +4736,9 @@ static const AVOption mov_options[] = {
|
||||||
{"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
|
{"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
|
||||||
FLAGS, "use_mfra_for" },
|
FLAGS, "use_mfra_for" },
|
||||||
{ "export_all", "Export unrecognized metadata entries", OFFSET(export_all),
|
{ "export_all", "Export unrecognized metadata entries", OFFSET(export_all),
|
||||||
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, .flags = FLAGS },
|
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
|
||||||
{ "export_xmp", "Export full XMP metadata", OFFSET(export_xmp),
|
{ "export_xmp", "Export full XMP metadata", OFFSET(export_xmp),
|
||||||
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, .flags = FLAGS },
|
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
|
||||||
{ "activation_bytes", "Secret bytes for Audible AAX files", OFFSET(activation_bytes),
|
{ "activation_bytes", "Secret bytes for Audible AAX files", OFFSET(activation_bytes),
|
||||||
AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
|
AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
|
||||||
{ "audible_fixed_key", // extracted from libAAX_SDK.so and AAXSDKWin.dll files!
|
{ "audible_fixed_key", // extracted from libAAX_SDK.so and AAXSDKWin.dll files!
|
||||||
|
|
Loading…
Reference in New Issue