Browse Source

avdevice/decklink_dec: remove extra bracket

Fixes compilation broken in 2245476e5c

Fixes ticket #6791

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.0
James Almer 7 years ago
parent
commit
5c819f433e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavdevice/decklink_dec.cpp

+ 1
- 1
libavdevice/decklink_dec.cpp View File

@@ -959,7 +959,7 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)

st->time_base.den = ctx->bmd_tb_den;
st->time_base.num = ctx->bmd_tb_num;
st->r_frame_rate = av_make_q(st->time_base.den, st->time_base.num));
st->r_frame_rate = av_make_q(st->time_base.den, st->time_base.num);

switch((BMDPixelFormat)cctx->raw_format) {
case bmdFormat8BitYUV:


Loading…
Cancel
Save