Searched refs:AV_SAMPLE_FMT_NB (Results 1 - 7 of 7) sorted by relevance
/third_party/ffmpeg/libavutil/ |
H A D | samplefmt.c | 36 static const SampleFmtInfo sample_fmt_info[AV_SAMPLE_FMT_NB] = { 53 if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB) in av_get_sample_fmt_name() 62 for (i = 0; i < AV_SAMPLE_FMT_NB; i++) in av_get_sample_fmt() 70 if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB) in av_get_alt_sample_fmt() 79 if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB) in av_get_packed_sample_fmt() 88 if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB) in av_get_planar_sample_fmt() 100 else if (sample_fmt < AV_SAMPLE_FMT_NB) { in av_get_sample_fmt_string() 110 return sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB ? in av_get_bytes_per_sample() 116 if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB) in av_sample_fmt_is_planar()
|
H A D | samplefmt.h | 71 AV_SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if linking dynamically enumerator
|
H A D | opt.c | 456 AV_SAMPLE_FMT_NB, av_get_sample_fmt, "sample format"); in set_string_sample_fmt() 744 return set_format(obj, name, fmt, search_flags, AV_OPT_TYPE_SAMPLE_FMT, "sample", AV_SAMPLE_FMT_NB); in av_opt_set_sample_fmt()
|
/third_party/ffmpeg/libavresample/ |
H A D | options.c | 40 { "in_sample_fmt", "Input Sample Format", OFFSET(in_sample_fmt), AV_OPT_TYPE_INT, { .i64 = AV_SAMPLE_FMT_S16 }, AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_NB-1, PARAM }, 43 { "out_sample_fmt", "Output Sample Format", OFFSET(out_sample_fmt), AV_OPT_TYPE_INT, { .i64 = AV_SAMPLE_FMT_S16 }, AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_NB-1, PARAM }, 45 { "internal_sample_fmt", "Internal Sample Format", OFFSET(internal_sample_fmt), AV_OPT_TYPE_INT, { .i64 = AV_SAMPLE_FMT_NONE }, AV_SAMPLE_FMT_NONE, AV_SAMPLE_FMT_NB-1, PARAM, "internal_sample_fmt" },
|
/third_party/ffmpeg/libswresample/ |
H A D | audioconvert.c | 91 #define FMT_PAIR_FUNC(out, in) [(out) + AV_SAMPLE_FMT_NB*(in)] = CONV_FUNC_NAME(out, in) 93 static conv_func_type * const fmt_pair_to_conv_functions[AV_SAMPLE_FMT_NB*AV_SAMPLE_FMT_NB] = { 151 conv_func_type *f = fmt_pair_to_conv_functions[av_get_packed_sample_fmt(out_fmt) + AV_SAMPLE_FMT_NB*av_get_packed_sample_fmt(in_fmt)]; in swri_audio_convert_alloc()
|
H A D | swresample.c | 197 if(s-> in_sample_fmt >= AV_SAMPLE_FMT_NB){ in swr_init() 201 if(s->out_sample_fmt >= AV_SAMPLE_FMT_NB){ in swr_init()
|
/third_party/ffmpeg/fftools/ |
H A D | opt_common.c | 1031 for (i = -1; i < AV_SAMPLE_FMT_NB; i++) in show_sample_fmts()
|
Completed in 9 milliseconds