Go to the source code of this file.
|
| AVFILTER_DEFINE_CLASS (a3dscope) |
|
static int | query_formats (AVFilterContext *ctx) |
|
static int | config_input (AVFilterLink *inlink) |
|
static int | config_output (AVFilterLink *outlink) |
|
static void | projection_matrix (float fov, float a, float near, float far, float matrix[4][4]) |
|
static void | vmultiply (const float v[4], const float m[4][4], float d[4]) |
|
static void | mmultiply (const float m2[4][4], const float m1[4][4], float m[4][4]) |
|
static float | vdot (const float x[3], const float y[3]) |
|
static void | view_matrix (const float eye[3], const float z[3], const float roll, const float pitch, const float yaw, float m[4][4]) |
|
static void | draw_dot (AVFrame *out, unsigned x, unsigned y, float z, int r, int g, int b) |
|
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
|
static int | activate (AVFilterContext *ctx) |
|
static av_cold void | uninit (AVFilterContext *ctx) |
|
◆ OFFSET
◆ FLAGS
◆ TFLAGS
◆ AVFILTER_DEFINE_CLASS()
AVFILTER_DEFINE_CLASS |
( |
a3dscope |
| ) |
|
◆ query_formats()
◆ config_input()
◆ config_output()
◆ projection_matrix()
◆ vmultiply()
static void vmultiply |
( |
const float |
v[4], |
|
|
const float |
m[4][4], |
|
|
float |
d[4] |
|
) |
| |
|
inlinestatic |
◆ mmultiply()
static void mmultiply |
( |
const float |
m2[4][4], |
|
|
const float |
m1[4][4], |
|
|
float |
m[4][4] |
|
) |
| |
|
static |
◆ vdot()
◆ view_matrix()
◆ draw_dot()
◆ filter_frame()
◆ activate()
◆ uninit()
◆ a3dscope_options
◆ audio3dscope_inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 331 of file avf_a3dscope.c.
◆ audio3dscope_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 339 of file avf_a3dscope.c.
◆ ff_avf_a3dscope
Initial value:= {
.name = "a3dscope",
.priv_class = &a3dscope_class,
}
Definition at line 347 of file avf_a3dscope.c.
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.