remove const... which is preventing us from building on trusty

This commit is contained in:
Isaac Connor 2017-09-26 12:53:54 -04:00
parent d69b16df24
commit 1ba0a52769
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<AVCodec *>(video_in_ctx->codec));
if (!video_out_stream) {
Fatal("Unable to create video out stream\n");
} else {