Go to the source code of this file.
|
| AVFILTER_DEFINE_CLASS (pullup) |
|
static int | query_formats (AVFilterContext *ctx) |
|
static int | diff_c (const uint8_t *a, const uint8_t *b, ptrdiff_t s) |
|
static int | comb_c (const uint8_t *a, const uint8_t *b, ptrdiff_t s) |
|
static int | var_c (const uint8_t *a, const uint8_t *b, ptrdiff_t s) |
|
static int | alloc_metrics (PullupContext *s, PullupField *f) |
|
static void | free_field_queue (PullupField *head) |
|
static PullupField * | make_field_queue (PullupContext *s, int len) |
|
static int | config_input (AVFilterLink *inlink) |
|
static PullupBuffer * | pullup_lock_buffer (PullupBuffer *b, int parity) |
|
static void | pullup_release_buffer (PullupBuffer *b, int parity) |
|
static int | alloc_buffer (PullupContext *s, PullupBuffer *b) |
|
static PullupBuffer * | pullup_get_buffer (PullupContext *s, int parity) |
|
static int | queue_length (PullupField *begin, PullupField *end) |
|
static int | find_first_break (PullupField *f, int max) |
|
static void | compute_breaks (PullupContext *s, PullupField *f0) |
|
static void | compute_affinity (PullupContext *s, PullupField *f) |
|
static int | decide_frame_length (PullupContext *s) |
|
static PullupFrame * | pullup_get_frame (PullupContext *s) |
|
static void | pullup_release_frame (PullupFrame *f) |
|
static void | compute_metric (PullupContext *s, int *dest, PullupField *fa, int pa, PullupField *fb, int pb, int(*func)(const uint8_t *, const uint8_t *, ptrdiff_t)) |
|
static int | check_field_queue (PullupContext *s) |
|
static void | pullup_submit_field (PullupContext *s, PullupBuffer *b, int parity) |
|
static void | copy_field (PullupContext *s, PullupBuffer *dst, PullupBuffer *src, int parity) |
|
static void | pullup_pack_frame (PullupContext *s, PullupFrame *fr) |
|
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
|
static av_cold void | uninit (AVFilterContext *ctx) |
|
◆ F_HAVE_BREAKS
◆ F_HAVE_AFFINITY
#define F_HAVE_AFFINITY 2 |
◆ BREAK_LEFT
◆ BREAK_RIGHT
◆ OFFSET
◆ FLAGS
◆ ABS
#define ABS |
( |
|
a | ) |
(((a) ^ ((a) >> 31)) - ((a) >> 31)) |
◆ AVFILTER_DEFINE_CLASS()
AVFILTER_DEFINE_CLASS |
( |
pullup |
| ) |
|
◆ query_formats()
◆ diff_c()
◆ comb_c()
◆ var_c()
◆ alloc_metrics()
◆ free_field_queue()
◆ make_field_queue()
◆ config_input()
◆ pullup_lock_buffer()
◆ pullup_release_buffer()
◆ alloc_buffer()
◆ pullup_get_buffer()
◆ queue_length()
◆ find_first_break()
◆ compute_breaks()
◆ compute_affinity()
◆ decide_frame_length()
◆ pullup_get_frame()
◆ pullup_release_frame()
◆ compute_metric()
◆ check_field_queue()
◆ pullup_submit_field()
◆ copy_field()
◆ pullup_pack_frame()
◆ filter_frame()
◆ uninit()
◆ pullup_options
◆ pullup_inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 749 of file vf_pullup.c.
◆ pullup_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 759 of file vf_pullup.c.
◆ ff_vf_pullup
Initial value:= {
.name = "pullup",
.priv_class = &pullup_class,
}
Definition at line 767 of file vf_pullup.c.