put parenthesis back in

This commit is contained in:
Isaac Connor 2017-09-26 09:15:54 -04:00
parent 9f93bfc23b
commit e277456682
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 {