#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "drawutils.h"
#include "formats.h"
#include "video.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | TileContext |
Defines | |
#define | REASONABLE_SIZE 1024 |
Functions | |
static av_cold int | init (AVFilterContext *ctx, const char *args) |
static int | query_formats (AVFilterContext *ctx) |
static int | config_props (AVFilterLink *outlink) |
static int | start_frame (AVFilterLink *inlink, AVFilterBufferRef *picref) |
static int | draw_slice (AVFilterLink *inlink, int y, int h, int slice_dir) |
static void | draw_blank_frame (AVFilterContext *ctx, AVFilterBufferRef *out_buf) |
static void | end_last_frame (AVFilterContext *ctx) |
static int | end_frame (AVFilterLink *inlink) |
static int | request_frame (AVFilterLink *outlink) |
Variables | |
AVFilter | avfilter_vf_tile |
Definition in file vf_tile.c.
static int config_props | ( | AVFilterLink * | outlink | ) | [static] |
static void draw_blank_frame | ( | AVFilterContext * | ctx, | |
AVFilterBufferRef * | out_buf | |||
) | [static] |
static int draw_slice | ( | AVFilterLink * | inlink, | |
int | y, | |||
int | h, | |||
int | slice_dir | |||
) | [static] |
static int end_frame | ( | AVFilterLink * | inlink | ) | [static] |
static void end_last_frame | ( | AVFilterContext * | ctx | ) | [static] |
static av_cold int init | ( | AVFilterContext * | ctx, | |
const char * | args | |||
) | [static] |
static int query_formats | ( | AVFilterContext * | ctx | ) | [static] |
static int request_frame | ( | AVFilterLink * | outlink | ) | [static] |
static int start_frame | ( | AVFilterLink * | inlink, | |
AVFilterBufferRef * | picref | |||
) | [static] |
Initial value:
{ .name = "tile", .description = NULL_IF_CONFIG_SMALL("Tile several successive frames together."), .init = init, .query_formats = query_formats, .priv_size = sizeof(TileContext), .inputs = (const AVFilterPad[]) { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, .start_frame = start_frame, .draw_slice = draw_slice, .end_frame = end_frame, .min_perms = AV_PERM_READ, }, { .name = NULL } }, .outputs = (const AVFilterPad[]) { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, .config_props = config_props, .request_frame = request_frame }, { .name = NULL } }, }