diff options
author | Jon Morley <jmorley@pixsystem.com> | 2018-05-31 02:45:07 -0700 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2018-06-13 00:15:06 +0200 |
commit | 0946c0ec177dc48ef0677f890aa42d95e667c417 (patch) | |
tree | 877152cd20bc425ee465f55e8afd9e274dd7df26 /libavdevice/decklink_common_c.h | |
parent | fb480a1f1e0cba88c3c7424655bacff7c465692b (diff) | |
download | ffmpeg-0946c0ec177dc48ef0677f890aa42d95e667c417.tar.gz |
avdevice/decklink_dec: capture timecode to metadata when requested
If the user provides a valid timecode_format look for timecode of that
format in the capture and if found store it on the video avstream's
metadata.
Slightly modified by Marton Balint to capture per-frame timecode as well.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavdevice/decklink_common_c.h')
-rw-r--r-- | libavdevice/decklink_common_c.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/decklink_common_c.h b/libavdevice/decklink_common_c.h index 08e9f9bbd5..32a5d70ee1 100644 --- a/libavdevice/decklink_common_c.h +++ b/libavdevice/decklink_common_c.h @@ -50,6 +50,7 @@ struct decklink_cctx { DecklinkPtsSource video_pts_source; int audio_input; int video_input; + int tc_format; int draw_bars; char *format_code; int raw_format; |