remove extra parenthesis

This commit is contained in:
Isaac Connor 2017-09-25 16:23:15 -04:00
parent 3227599e01
commit 74bb2da668
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ VideoStore::VideoStore(const char *filename_in, const char *format_in,
#else
video_out_stream =
avformat_new_stream(oc, reinterpret_cast<const AVCodec *>(video_in_ctx->codec));
avformat_new_stream(oc, reinterpret_cast<const AVCodec *>video_in_ctx->codec);
if (!video_out_stream) {
Fatal("Unable to create video out stream\n");
} else {