lavu/opt: switch AV_OPT flags to shift-based formatting

This commit is contained in:
Rodger Combs 2015-09-21 04:15:56 -05:00
parent 8f6f357fde
commit f36baeebc5

View File

@ -553,7 +553,7 @@ int av_opt_eval_q (void *obj, const AVOption *o, const char *val, AVRational
* @} * @}
*/ */
#define AV_OPT_SEARCH_CHILDREN 0x0001 /**< Search in possible children of the #define AV_OPT_SEARCH_CHILDREN (1 << 0) /**< Search in possible children of the
given object first. */ given object first. */
/** /**
* The obj passed to av_opt_find() is fake -- only a double pointer to AVClass * The obj passed to av_opt_find() is fake -- only a double pointer to AVClass
@ -561,14 +561,14 @@ int av_opt_eval_q (void *obj, const AVOption *o, const char *val, AVRational
* useful for searching for options without needing to allocate the corresponding * useful for searching for options without needing to allocate the corresponding
* object. * object.
*/ */
#define AV_OPT_SEARCH_FAKE_OBJ 0x0002 #define AV_OPT_SEARCH_FAKE_OBJ (1 << 1)
/** /**
* Allows av_opt_query_ranges and av_opt_query_ranges_default to return more than * Allows av_opt_query_ranges and av_opt_query_ranges_default to return more than
* one component for certain option types. * one component for certain option types.
* @see AVOptionRanges for details. * @see AVOptionRanges for details.
*/ */
#define AV_OPT_MULTI_COMPONENT_RANGE 0x1000 #define AV_OPT_MULTI_COMPONENT_RANGE (1 << 12)
/** /**
* Look for an option in an object. Consider only options which * Look for an option in an object. Consider only options which