diff options
author | Marton Balint <cus@passwd.hu> | 2016-01-12 03:09:37 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2016-01-29 01:42:15 +0100 |
commit | 995c7a6f5ad480d706b22e97609e2cce2f305e4b (patch) | |
tree | 292c406bb2219f41f9fb69ae49495ff36b333385 /libavdevice/decklink_common.h | |
parent | 98e94dff7a59972879ad149e313b5b8535bd4d1a (diff) | |
download | ffmpeg-995c7a6f5ad480d706b22e97609e2cce2f305e4b.tar.gz |
lavd/decklink_dec: add support for teletext
It uses the libzvbi slicer, therefore teletext capture requires libzvbi.
Reviewed-by: Deti Fliegl <deti@fliegl.de>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavdevice/decklink_common.h')
-rw-r--r-- | libavdevice/decklink_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavdevice/decklink_common.h b/libavdevice/decklink_common.h index 3bc30f062c..076c62506b 100644 --- a/libavdevice/decklink_common.h +++ b/libavdevice/decklink_common.h @@ -67,10 +67,12 @@ struct decklink_ctx { unsigned int dropped; AVStream *audio_st; AVStream *video_st; + AVStream *teletext_st; /* Options */ int list_devices; int list_formats; + int64_t teletext_lines; double preroll; int frames_preroll; |