blob: e12e14d3fac0482c38fe6dc17299fe1e07b1a371 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/avframe.cpp.orig 2016-11-18 13:31:01 UTC
+++ src/avframe.cpp
@@ -52,7 +52,7 @@ avframe::avframe(AVFrame *src, AVCodecCo
tobefreed = (uint8_t *)malloc(avpicture_get_size(ctx->pix_fmt, ctx->width, ctx->height));
avpicture_fill((AVPicture *)f,
- (u_int8_t*)tobefreed,
+ (uint8_t*)tobefreed,
ctx->pix_fmt,ctx->width,ctx->height);
av_picture_copy((AVPicture *)f, (const AVPicture *) src,
|