mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-04 22:30:25 +00:00
avdevice/decklink_dec: fix warning for unused variable
Reviewed-by: Marton Balint <cus@passwd.hu> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
parent
3d0a7ae460
commit
01eb05207c
@ -945,13 +945,13 @@ HRESULT decklink_input_callback::VideoInputFrameArrived(
|
||||
|
||||
if (videoFrame->GetAncillaryData(&vanc) == S_OK) {
|
||||
int i;
|
||||
int64_t line_mask = 1;
|
||||
BMDPixelFormat vanc_format = vanc->GetPixelFormat();
|
||||
txt_buf[0] = 0x10; // data_identifier - EBU_data
|
||||
txt_buf++;
|
||||
#if CONFIG_LIBZVBI
|
||||
if (ctx->bmd_mode == bmdModePAL && ctx->teletext_lines &&
|
||||
(vanc_format == bmdFormat8BitYUV || vanc_format == bmdFormat10BitYUV)) {
|
||||
int64_t line_mask = 1;
|
||||
av_assert0(videoFrame->GetWidth() == 720);
|
||||
for (i = 6; i < 336; i++, line_mask <<= 1) {
|
||||
uint8_t *buf;
|
||||
|
Loading…
Reference in New Issue
Block a user