• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/

Lines Matching refs:search_flags

227 int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
230 const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
268 int search_flags)
271 const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
306 int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
308 return set_number(obj, name, 1, 1, val, search_flags);
311 int av_opt_set_double(void *obj, const char *name, double val, int search_flags)
313 return set_number(obj, name, val, 1, 1, search_flags);
316 int av_opt_set_q(void *obj, const char *name, AVRational val, int search_flags)
318 return set_number(obj, name, val.num, val.den, 1, search_flags);
361 int av_opt_get(void *obj, const char *name, int search_flags, uint8_t **out_val)
364 const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
408 int search_flags)
411 const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
464 int av_opt_get_int(void *obj, const char *name, int search_flags, int64_t *out_val)
470 if ((ret = get_number(obj, name, NULL, &num, &den, &intnum, search_flags)) < 0)
476 int av_opt_get_double(void *obj, const char *name, int search_flags, double *out_val)
482 if ((ret = get_number(obj, name, NULL, &num, &den, &intnum, search_flags)) < 0)
488 int av_opt_get_q(void *obj, const char *name, int search_flags, AVRational *out_val)
494 if ((ret = get_number(obj, name, NULL, &num, &den, &intnum, search_flags)) < 0)
748 int opt_flags, int search_flags)
750 return av_opt_find2(obj, name, unit, opt_flags, search_flags, NULL);
754 int opt_flags, int search_flags, void **target_obj)
759 if (search_flags & AV_OPT_SEARCH_CHILDREN) {
760 if (search_flags & AV_OPT_SEARCH_FAKE_OBJ) {
763 if (o = av_opt_find2(&child, name, unit, opt_flags, search_flags, NULL))
768 if (o = av_opt_find2(child, name, unit, opt_flags, search_flags, target_obj))
778 if (!(search_flags & AV_OPT_SEARCH_FAKE_OBJ))