• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/

Lines Matching refs:search_flags

553  * @param search_flags A combination of AV_OPT_SEARCH_*.
560 int av_opt_set_dict2(void *obj, struct AVDictionary **options, int search_flags);
648 * @param search_flags A combination of AV_OPT_SEARCH_*.
659 int opt_flags, int search_flags);
673 * @param search_flags A combination of AV_OPT_SEARCH_*.
676 * in search_flags. This parameter is ignored if search_flags contain
683 int opt_flags, int search_flags, void **target_obj);
729 * @param search_flags flags passed to av_opt_find2. I.e. if AV_OPT_SEARCH_CHILDREN
738 int av_opt_set (void *obj, const char *name, const char *val, int search_flags);
739 int av_opt_set_int (void *obj, const char *name, int64_t val, int search_flags);
740 int av_opt_set_double(void *obj, const char *name, double val, int search_flags);
741 int av_opt_set_q (void *obj, const char *name, AVRational val, int search_flags);
742 int av_opt_set_bin (void *obj, const char *name, const uint8_t *val, int size, int search_flags);
743 int av_opt_set_image_size(void *obj, const char *name, int w, int h, int search_flags);
744 int av_opt_set_pixel_fmt (void *obj, const char *name, enum AVPixelFormat fmt, int search_flags);
745 int av_opt_set_sample_fmt(void *obj, const char *name, enum AVSampleFormat fmt, int search_flags);
746 int av_opt_set_video_rate(void *obj, const char *name, AVRational val, int search_flags);
747 int av_opt_set_channel_layout(void *obj, const char *name, int64_t ch_layout, int search_flags);
775 * @param[in] search_flags flags passed to av_opt_find2. I.e. if AV_OPT_SEARCH_CHILDREN
783 int av_opt_get (void *obj, const char *name, int search_flags, uint8_t **out_val);
784 int av_opt_get_int (void *obj, const char *name, int search_flags, int64_t *out_val);
785 int av_opt_get_double(void *obj, const char *name, int search_flags, double *out_val);
786 int av_opt_get_q (void *obj, const char *name, int search_flags, AVRational *out_val);
787 int av_opt_get_image_size(void *obj, const char *name, int search_flags, int *w_out, int *h_out);
788 int av_opt_get_pixel_fmt (void *obj, const char *name, int search_flags, enum AVPixelFormat *out_fmt);
789 int av_opt_get_sample_fmt(void *obj, const char *name, int search_flags, enum AVSampleFormat *out_fmt);
790 int av_opt_get_video_rate(void *obj, const char *name, int search_flags, AVRational *out_val);
791 int av_opt_get_channel_layout(void *obj, const char *name, int search_flags, int64_t *ch_layout);