summaryrefslogtreecommitdiffstats
path: root/libavdevice
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-10-30 11:48:14 -0300
committerJames Almer <jamrial@gmail.com>2017-10-30 11:48:14 -0300
commitda71351dd36a4f91bc4ea8129cffc5a858b8d686 (patch)
tree22ea98778ab5f936146ff922a939f4dbd819a934 /libavdevice
parent5c819f433e85cf4c19823f17beb1092012e95b1d (diff)
downloadffmpeg-streaming-da71351dd36a4f91bc4ea8129cffc5a858b8d686.zip
ffmpeg-streaming-da71351dd36a4f91bc4ea8129cffc5a858b8d686.tar.gz
avdevice/libndi_newtek_dec: remove extra bracket
Fixes compilation broken in 2245476e5c451552f8f32a4a881f6b4968898a47 Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavdevice')
-rw-r--r--libavdevice/libndi_newtek_dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/libndi_newtek_dec.c b/libavdevice/libndi_newtek_dec.c
index 5bbaa39..2f14f4b 100644
--- a/libavdevice/libndi_newtek_dec.c
+++ b/libavdevice/libndi_newtek_dec.c
@@ -189,7 +189,7 @@ static int ndi_create_video_stream(AVFormatContext *avctx, NDIlib_video_frame_t
}
st->time_base = NDI_TIME_BASE_Q;
- st->r_frame_rate = av_make_q(v->frame_rate_N, v->frame_rate_D));
+ st->r_frame_rate = av_make_q(v->frame_rate_N, v->frame_rate_D);
tmp = av_mul_q(av_d2q(v->picture_aspect_ratio, INT_MAX), (AVRational){v->yres, v->xres});
av_reduce(&st->sample_aspect_ratio.num, &st->sample_aspect_ratio.den, tmp.num, tmp.den, 1000);
OpenPOWER on IntegriCloud