Home
last modified time | relevance | path

Searched refs:ofmt (Results 1 – 16 of 16) sorted by relevance

/third_party/ffmpeg/libswscale/arm/
Dyuv2rgb_neon.S50 .macro compute dst ofmt argument
58 .ifc \ofmt,argb
62 .ifc \ofmt,rgba
66 .ifc \ofmt,abgr
70 .ifc \ofmt,bgra
82 .macro process_1l_internal dst src ofmt argument
84 compute \dst, \ofmt
87 .macro process_1l ofmt argument
89 process_1l_internal r2, r4, \ofmt
92 .macro process_2l ofmt argument
[all …]
Dswscale_unscaled.c71 #define DECLARE_FF_YUVX_TO_RGBX_FUNCS(ifmt, ofmt) \ argument
72 int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \
81 static int ifmt##_to_##ofmt##_neon_wrapper(SwsContext *c, const uint8_t *src[], \
86 ff_##ifmt##_to_##ofmt##_neon(c->srcW, srcSliceH, \
107 #define DECLARE_FF_NVX_TO_RGBX_FUNCS(ifmt, ofmt) \ in DECLARE_FF_YUVX_TO_ALL_RGBX_FUNCS() argument
108 int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \ in DECLARE_FF_YUVX_TO_ALL_RGBX_FUNCS()
116 static int ifmt##_to_##ofmt##_neon_wrapper(SwsContext *c, const uint8_t *src[], \
121 ff_##ifmt##_to_##ofmt##_neon(c->srcW, srcSliceH, \
144 #define SET_FF_NVX_TO_RGBX_FUNC(ifmt, IFMT, ofmt, OFMT, accurate_rnd) do { \ argument
150 c->swscale = ifmt##_to_##ofmt##_neon_wrapper; \
/third_party/ffmpeg/libswscale/aarch64/
Dswscale_unscaled.c30 #define DECLARE_FF_YUVX_TO_RGBX_FUNCS(ifmt, ofmt) \ argument
31 int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \
40 static int ifmt##_to_##ofmt##_neon_wrapper(SwsContext *c, const uint8_t *src[], \
45 return ff_##ifmt##_to_##ofmt##_neon(c->srcW, srcSliceH, \
64 #define DECLARE_FF_NVX_TO_RGBX_FUNCS(ifmt, ofmt) \ in DECLARE_FF_YUVX_TO_ALL_RGBX_FUNCS() argument
65 int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \ in DECLARE_FF_YUVX_TO_ALL_RGBX_FUNCS()
73 static int ifmt##_to_##ofmt##_neon_wrapper(SwsContext *c, const uint8_t *src[], \
78 return ff_##ifmt##_to_##ofmt##_neon(c->srcW, srcSliceH, \
99 #define SET_FF_NVX_TO_RGBX_FUNC(ifmt, IFMT, ofmt, OFMT, accurate_rnd) do { \ argument
105 c->swscale = ifmt##_to_##ofmt##_neon_wrapper; \
Dyuv2rgb_neon.S142 .macro declare_func ifmt ofmt argument
143 function ff_\ifmt\()_to_\ofmt\()_neon, export=1
172 .ifc \ofmt,argb // 1 2 3 0
176 .ifc \ofmt,rgba // 0 1 2 3
180 .ifc \ofmt,abgr // 3 2 1 0
184 .ifc \ofmt,bgra // 2 1 0 3
/third_party/ffmpeg/libavformat/
Doptions.c61 const AVOutputFormat *ofmt = NULL; in format_child_class_next() local
73 while ((ofmt = av_muxer_iterate(&ofmt_iter))) in format_child_class_next()
74 if (ofmt->priv_class == prev) in format_child_class_next()
77 if (!ofmt) { in format_child_class_next()
84 while ((ofmt = av_muxer_iterate(&ofmt_iter))) in format_child_class_next()
85 if (ofmt->priv_class) in format_child_class_next()
86 return ofmt->priv_class; in format_child_class_next()
117 const AVOutputFormat *ofmt; in format_child_class_iterate() local
119 while ((ofmt = av_muxer_iterate(&val))) { in format_child_class_iterate()
120 ret = ofmt->priv_class; in format_child_class_iterate()
Drtp.c94 const AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL; in ff_rtp_get_payload_type() local
97 if (ofmt && ofmt->priv_class && fmt->priv_data) { in ff_rtp_get_payload_type()
Davformat.h2878 int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id,
2997 int avformat_transfer_internal_stream_timing_info(const AVOutputFormat *ofmt,
Dutils.c5074 int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id, argument
5077 if (ofmt) {
5079 if (ofmt->query_codec)
5080 return ofmt->query_codec(codec_id, std_compliance);
5081 else if (ofmt->codec_tag)
5082 return !!av_codec_get_tag2(ofmt->codec_tag, codec_id, &codec_tag);
5083 else if (codec_id == ofmt->video_codec ||
5084 codec_id == ofmt->audio_codec ||
5085 codec_id == ofmt->subtitle_codec ||
5086 codec_id == ofmt->data_codec)
[all …]
/third_party/ffmpeg/libavresample/
Daudio_convert.c143 #define CONV_FUNC_FLAT(ofmt, otype, ifmt, itype, expr) \ argument
144 static void CONV_FUNC_NAME(ofmt, ifmt)(uint8_t *out, const uint8_t *in, \
155 #define CONV_FUNC_INTERLEAVE(ofmt, otype, ifmt, itype, expr) \ argument
156 static void CONV_FUNC_NAME(ofmt, ifmt)(uint8_t *out, const uint8_t **in, \
171 #define CONV_FUNC_DEINTERLEAVE(ofmt, otype, ifmt, itype, expr) \ argument
172 static void CONV_FUNC_NAME(ofmt, ifmt)(uint8_t **out, const uint8_t *in, \
187 #define CONV_FUNC_GROUP(ofmt, otype, ifmt, itype, expr) \ argument
188 CONV_FUNC_FLAT( ofmt, otype, ifmt, itype, expr) \
189 CONV_FUNC_INTERLEAVE( ofmt, otype, ifmt ## P, itype, expr) \
190 CONV_FUNC_DEINTERLEAVE(ofmt ## P, otype, ifmt, itype, expr)
[all …]
/third_party/ffmpeg/doc/examples/
Dremuxing.c48 AVOutputFormat *ofmt = NULL; in main() local
94 ofmt = ofmt_ctx->oformat; in main()
126 if (!(ofmt->flags & AVFMT_NOFILE)) { in main()
179 if (ofmt_ctx && !(ofmt->flags & AVFMT_NOFILE)) in main()
/third_party/ffmpeg/libavcodec/
Dv4l2_m2m.c140 struct v4l2_format ofmt, cfmt; in v4l2_configure_contexts() local
150 ofmt = s->output.format; in v4l2_configure_contexts()
153 av_fourcc2str(V4L2_TYPE_IS_MULTIPLANAR(ofmt.type) ? in v4l2_configure_contexts()
154 ofmt.fmt.pix_mp.pixelformat : in v4l2_configure_contexts()
155 ofmt.fmt.pix.pixelformat), in v4l2_configure_contexts()
/third_party/gstreamer/gstplugins_good/sys/oss4/
Doss4-audio.c586 int ofmt, fmt, chans, rate, width; in gst_oss4_audio_set_format() local
594 ofmt = fmt; in gst_oss4_audio_set_format()
624 if (fmt != ofmt || chans != GST_AUDIO_INFO_CHANNELS (&spec->info) || in gst_oss4_audio_set_format()
/third_party/ffmpeg/libswresample/
Daudioconvert.c38 #define CONV_FUNC(ofmt, otype, ifmt, expr)\ argument
39 static void CONV_FUNC_NAME(ofmt, ifmt)(uint8_t *po, const uint8_t *pi, int is, int os, uint8_t *end…
/third_party/ffmpeg/fftools/
Dcmdutils.c1297 const AVOutputFormat *ofmt = NULL; in show_formats_devices() local
1314 while ((ofmt = av_muxer_iterate(&ofmt_opaque))) { in show_formats_devices()
1315 is_dev = is_device(ofmt->priv_class); in show_formats_devices()
1318 if ((!name || strcmp(ofmt->name, name) < 0) && in show_formats_devices()
1319 strcmp(ofmt->name, last_name) > 0) { in show_formats_devices()
1320 name = ofmt->name; in show_formats_devices()
1321 long_name = ofmt->long_name; in show_formats_devices()
/third_party/elfutils/src/
Dar.c1083 no0print (bool ofmt, char *buf, int bufsize, long int val) in no0print() argument
1086 int ret = snprintf (tmpbuf, sizeof (tmpbuf), ofmt ? "%-*lo" : "%-*ld", in no0print()
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1561 PyObject *ofmt = SWIG_Python_str_FromChar(fmt); in SwigPyObject_format() local
1562 if (ofmt) { in SwigPyObject_format()
1564 res = PyUnicode_Format(ofmt,args); in SwigPyObject_format()
1566 res = PyString_Format(ofmt,args); in SwigPyObject_format()
1568 Py_DECREF(ofmt); in SwigPyObject_format()