|
FFmpeg
4.0
|
Filter for reading closed captioning data (EIA-608). More...
#include <string.h>#include "libavutil/internal.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "libavutil/timestamp.h"#include "avfilter.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | ReadEIA608Context |
Macros | |
| #define | FALL 0 |
| #define | RISE 1 |
| #define | OFFSET(x) offsetof(ReadEIA608Context, x) |
| #define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
| AVFILTER_DEFINE_CLASS (readeia608) | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_input (AVFilterLink *inlink) |
| static void | extract_line (AVFilterContext *ctx, AVFilterLink *inlink, AVFrame *in, int line) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
Variables | |
| static const AVOption | readeia608_options [] |
| static const AVFilterPad | readeia608_inputs [] |
| static const AVFilterPad | readeia608_outputs [] |
| AVFilter | ff_vf_readeia608 |
Filter for reading closed captioning data (EIA-608).
See also https://en.wikipedia.org/wiki/EIA-608
Definition in file vf_readeia608.c.
| #define FALL 0 |
Definition at line 39 of file vf_readeia608.c.
Referenced by extract_line().
| #define RISE 1 |
Definition at line 40 of file vf_readeia608.c.
Referenced by extract_line().
| #define OFFSET | ( | x | ) | offsetof(ReadEIA608Context, x) |
Definition at line 56 of file vf_readeia608.c.
| #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 57 of file vf_readeia608.c.
| AVFILTER_DEFINE_CLASS | ( | readeia608 | ) |
|
static |
Definition at line 76 of file vf_readeia608.c.
|
static |
Definition at line 94 of file vf_readeia608.c.
|
static |
Definition at line 121 of file vf_readeia608.c.
Referenced by filter_frame().
|
static |
Definition at line 227 of file vf_readeia608.c.
|
static |
Definition at line 59 of file vf_readeia608.c.
|
static |
Definition at line 241 of file vf_readeia608.c.
|
static |
Definition at line 251 of file vf_readeia608.c.
| AVFilter ff_vf_readeia608 |
Definition at line 259 of file vf_readeia608.c.
1.8.13