avutil/iamf: use AV_OPT_TYPE_UINT
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
		
							parent
							
								
									d6e877bbcd
								
							
						
					
					
						commit
						088bf6e8c1
					
				| @ -64,8 +64,8 @@ child_type *av_iamf_ ## parent_name ## _add_ ## child_name(parent_type *parent_n | |||||||
| //
 | //
 | ||||||
| #define OFFSET(x) offsetof(AVIAMFMixGain, x) | #define OFFSET(x) offsetof(AVIAMFMixGain, x) | ||||||
| static const AVOption mix_gain_options[] = { | static const AVOption mix_gain_options[] = { | ||||||
|     { "subblock_duration", "set subblock_duration", OFFSET(subblock_duration), AV_OPT_TYPE_INT, {.i64 = 1 }, 1, UINT_MAX, FLAGS }, |     { "subblock_duration", "set subblock_duration", OFFSET(subblock_duration), AV_OPT_TYPE_UINT, {.i64 = 1 }, 1, UINT_MAX, FLAGS }, | ||||||
|     { "animation_type", "set animation_type", OFFSET(animation_type), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 2, FLAGS }, |     { "animation_type", "set animation_type", OFFSET(animation_type), AV_OPT_TYPE_UINT, {.i64 = 0 }, 0, 2, FLAGS }, | ||||||
|     { "start_point_value", "set start_point_value", OFFSET(start_point_value), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, -128.0, 128.0, FLAGS }, |     { "start_point_value", "set start_point_value", OFFSET(start_point_value), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, -128.0, 128.0, FLAGS }, | ||||||
|     { "end_point_value", "set end_point_value", OFFSET(end_point_value), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, -128.0, 128.0, FLAGS }, |     { "end_point_value", "set end_point_value", OFFSET(end_point_value), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, -128.0, 128.0, FLAGS }, | ||||||
|     { "control_point_value", "set control_point_value", OFFSET(control_point_value), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, -128.0, 128.0, FLAGS }, |     { "control_point_value", "set control_point_value", OFFSET(control_point_value), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, -128.0, 128.0, FLAGS }, | ||||||
| @ -83,8 +83,8 @@ static const AVClass mix_gain_class = { | |||||||
| #undef OFFSET | #undef OFFSET | ||||||
| #define OFFSET(x) offsetof(AVIAMFDemixingInfo, x) | #define OFFSET(x) offsetof(AVIAMFDemixingInfo, x) | ||||||
| static const AVOption demixing_info_options[] = { | static const AVOption demixing_info_options[] = { | ||||||
|     { "subblock_duration", "set subblock_duration", OFFSET(subblock_duration), AV_OPT_TYPE_INT, {.i64 = 1 }, 1, UINT_MAX, FLAGS }, |     { "subblock_duration", "set subblock_duration", OFFSET(subblock_duration), AV_OPT_TYPE_UINT, {.i64 = 1 }, 1, UINT_MAX, FLAGS }, | ||||||
|     { "dmixp_mode", "set dmixp_mode", OFFSET(dmixp_mode), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 6, FLAGS }, |     { "dmixp_mode", "set dmixp_mode", OFFSET(dmixp_mode), AV_OPT_TYPE_UINT, {.i64 = 0 }, 0, 6, FLAGS }, | ||||||
|     { NULL }, |     { NULL }, | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| @ -98,7 +98,7 @@ static const AVClass demixing_info_class = { | |||||||
| #undef OFFSET | #undef OFFSET | ||||||
| #define OFFSET(x) offsetof(AVIAMFReconGain, x) | #define OFFSET(x) offsetof(AVIAMFReconGain, x) | ||||||
| static const AVOption recon_gain_options[] = { | static const AVOption recon_gain_options[] = { | ||||||
|     { "subblock_duration", "set subblock_duration", OFFSET(subblock_duration), AV_OPT_TYPE_INT, {.i64 = 1 }, 1, UINT_MAX, FLAGS }, |     { "subblock_duration", "set subblock_duration", OFFSET(subblock_duration), AV_OPT_TYPE_UINT, {.i64 = 1 }, 1, UINT_MAX, FLAGS }, | ||||||
|     { NULL }, |     { NULL }, | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| @ -112,10 +112,10 @@ static const AVClass recon_gain_class = { | |||||||
| #undef OFFSET | #undef OFFSET | ||||||
| #define OFFSET(x) offsetof(AVIAMFParamDefinition, x) | #define OFFSET(x) offsetof(AVIAMFParamDefinition, x) | ||||||
| static const AVOption param_definition_options[] = { | static const AVOption param_definition_options[] = { | ||||||
|     { "parameter_id", "set parameter_id", OFFSET(parameter_id), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, UINT_MAX, FLAGS }, |     { "parameter_id", "set parameter_id", OFFSET(parameter_id), AV_OPT_TYPE_UINT, {.i64 = 0 }, 0, UINT_MAX, FLAGS }, | ||||||
|     { "parameter_rate", "set parameter_rate", OFFSET(parameter_rate), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, UINT_MAX, FLAGS }, |     { "parameter_rate", "set parameter_rate", OFFSET(parameter_rate), AV_OPT_TYPE_UINT, {.i64 = 0 }, 0, UINT_MAX, FLAGS }, | ||||||
|     { "duration", "set duration", OFFSET(duration), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, UINT_MAX, FLAGS }, |     { "duration", "set duration", OFFSET(duration), AV_OPT_TYPE_UINT, {.i64 = 0 }, 0, UINT_MAX, FLAGS }, | ||||||
|     { "constant_subblock_duration", "set constant_subblock_duration", OFFSET(constant_subblock_duration), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, UINT_MAX, FLAGS }, |     { "constant_subblock_duration", "set constant_subblock_duration", OFFSET(constant_subblock_duration), AV_OPT_TYPE_UINT, {.i64 = 0 }, 0, UINT_MAX, FLAGS }, | ||||||
|     { NULL }, |     { NULL }, | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| @ -289,7 +289,7 @@ static const AVOption audio_element_options[] = { | |||||||
|                    { .i64 = AV_IAMF_AUDIO_ELEMENT_TYPE_CHANNEL }, .unit = "audio_element_type" }, |                    { .i64 = AV_IAMF_AUDIO_ELEMENT_TYPE_CHANNEL }, .unit = "audio_element_type" }, | ||||||
|         { "scene",   NULL, 0, AV_OPT_TYPE_CONST, |         { "scene",   NULL, 0, AV_OPT_TYPE_CONST, | ||||||
|                    { .i64 = AV_IAMF_AUDIO_ELEMENT_TYPE_SCENE },   .unit = "audio_element_type" }, |                    { .i64 = AV_IAMF_AUDIO_ELEMENT_TYPE_SCENE },   .unit = "audio_element_type" }, | ||||||
|     { "default_w", "set default_w", OFFSET(default_w), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 10, FLAGS }, |     { "default_w", "set default_w", OFFSET(default_w), AV_OPT_TYPE_UINT, {.i64 = 0 }, 0, 10, FLAGS }, | ||||||
|     { NULL }, |     { NULL }, | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user