remove const... which is preventing us from building on trusty
This commit is contained in:
parent
d69b16df24
commit
1ba0a52769
|
@ -125,7 +125,7 @@ VideoStore::VideoStore(const char *filename_in, const char *format_in,
|
||||||
|
|
||||||
#else
|
#else
|
||||||
video_out_stream =
|
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) {
|
if (!video_out_stream) {
|
||||||
Fatal("Unable to create video out stream\n");
|
Fatal("Unable to create video out stream\n");
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue