/third_party/ffmpeg/libswscale/arm/ |
H A D | yuv2rgb_neon.S | 50 .macro compute dst ofmt 58 .ifc \ofmt,argb 62 .ifc \ofmt,rgba 66 .ifc \ofmt,abgr 70 .ifc \ofmt,bgra 82 .macro process_1l_internal dst src ofmt 84 compute \dst, \ofmt 87 .macro process_1l ofmt 89 process_1l_internal r2, r4, \ofmt 92 .macro process_2l ofmt [all...] |
H A D | swscale_unscaled.c | 71 #define DECLARE_FF_YUVX_TO_RGBX_FUNCS(ifmt, ofmt) \ 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) \ 108 int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \ 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 { \ 150 c->convert_unscaled = ifmt##_to_##ofmt##_neon_wrappe [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | mux_utils.c | 40 int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id, in avformat_query_codec() argument 43 if (ofmt) { in avformat_query_codec() 45 if (ofmt->query_codec) in avformat_query_codec() 46 return ofmt->query_codec(codec_id, std_compliance); in avformat_query_codec() 47 else if (ofmt->codec_tag) in avformat_query_codec() 48 return !!av_codec_get_tag2(ofmt->codec_tag, codec_id, &codec_tag); in avformat_query_codec() 49 else if (codec_id == ofmt->video_codec || in avformat_query_codec() 50 codec_id == ofmt->audio_codec || in avformat_query_codec() 51 codec_id == ofmt->subtitle_codec || in avformat_query_codec() 52 codec_id == ofmt in avformat_query_codec() [all...] |
H A D | rtp.c | 97 const AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL; in ff_rtp_get_payload_type() local 100 if (ofmt && ofmt->priv_class && fmt->priv_data) { in ff_rtp_get_payload_type()
|
H A D | options.c | 87 const AVOutputFormat *ofmt; in format_child_class_iterate() local 89 while ((ofmt = av_muxer_iterate(&val))) { in format_child_class_iterate() 90 ret = ofmt->priv_class; in format_child_class_iterate()
|
H A D | avformat.c | 633 int avformat_transfer_internal_stream_timing_info(const AVOutputFormat *ofmt, in avformat_transfer_internal_stream_timing_info() argument 646 if (!strcmp(ofmt->name, "avi")) { in avformat_transfer_internal_stream_timing_info() 667 } else if (!(ofmt->flags & AVFMT_VARIABLE_FPS) in avformat_transfer_internal_stream_timing_info() 668 && !av_match_name(ofmt->name, "mov,mp4,3gp,3g2,psp,ipod,ismv,f4v")) { in avformat_transfer_internal_stream_timing_info()
|
H A D | avformat.h | 2806 * @param ofmt container to check for compatibility 2810 * @return 1 if codec with ID codec_id can be stored in ofmt, 0 if it cannot. 2813 int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id, 2910 * @param ofmt target output format for ost 2915 int avformat_transfer_internal_stream_timing_info(const AVOutputFormat *ofmt,
|
/third_party/ffmpeg/libswscale/aarch64/ |
H A D | swscale_unscaled.c | 30 #define DECLARE_FF_YUVX_TO_RGBX_FUNCS(ifmt, ofmt) \ 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) \ 65 int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \ 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 { \ 105 c->convert_unscaled = ifmt##_to_##ofmt##_neon_wrappe [all...] |
H A D | yuv2rgb_neon.S | 142 .macro declare_func ifmt ofmt 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/libavresample/ |
H A D | audio_convert.c | 143 #define CONV_FUNC_FLAT(ofmt, otype, ifmt, itype, expr) \ 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) \ 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) \ 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) \ 188 CONV_FUNC_FLAT( ofmt, otype, ifmt, itype, expr) \ 189 CONV_FUNC_INTERLEAVE( ofmt, otype, ifmt ## P, itype, expr) \ 190 CONV_FUNC_DEINTERLEAVE(ofmt ## [all...] |
/third_party/ffmpeg/doc/examples/ |
H A D | remuxing.c | 48 const AVOutputFormat *ofmt = NULL; in main() local 100 ofmt = ofmt_ctx->oformat; in main() 132 if (!(ofmt->flags & AVFMT_NOFILE)) { in main() 186 if (ofmt_ctx && !(ofmt->flags & AVFMT_NOFILE)) in main()
|
/third_party/ffmpeg/libavcodec/ |
H A D | v4l2_m2m.c | 139 struct v4l2_format ofmt, cfmt; in v4l2_configure_contexts() local 149 ofmt = s->output.format; in v4l2_configure_contexts() 152 av_fourcc2str(V4L2_TYPE_IS_MULTIPLANAR(ofmt.type) ? in v4l2_configure_contexts() 153 ofmt.fmt.pix_mp.pixelformat : in v4l2_configure_contexts() 154 ofmt.fmt.pix.pixelformat), in v4l2_configure_contexts()
|
/third_party/ffmpeg/fftools/ |
H A D | opt_common.c | 849 const AVOutputFormat *ofmt = NULL; in show_formats_devices() local 866 while ((ofmt = av_muxer_iterate(&ofmt_opaque))) { in show_formats_devices() 867 is_dev = is_device(ofmt->priv_class); in show_formats_devices() 870 if ((!name || strcmp(ofmt->name, name) < 0) && in show_formats_devices() 871 strcmp(ofmt->name, last_name) > 0) { in show_formats_devices() 872 name = ofmt->name; in show_formats_devices() 873 long_name = ofmt->long_name; in show_formats_devices()
|
/third_party/ffmpeg/libswresample/ |
H A D | audioconvert.c | 38 #define CONV_FUNC(ofmt, otype, ifmt, expr)\ 39 static void CONV_FUNC_NAME(ofmt, ifmt)(uint8_t *po, const uint8_t *pi, int is, int os, uint8_t *end)\
|
/third_party/elfutils/src/ |
H A D | ar.c | 1083 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/ |
H A D | libwebp_python_wrap.c | 1561 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()
|