Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/multimedia/dvbcut/files/patch-src_avframe.cpp
16462 views
1
--- src/avframe.cpp.orig 2016-11-18 13:31:01 UTC
2
+++ src/avframe.cpp
3
@@ -52,7 +52,7 @@ avframe::avframe(AVFrame *src, AVCodecCo
4
tobefreed = (uint8_t *)malloc(avpicture_get_size(ctx->pix_fmt, ctx->width, ctx->height));
5
6
avpicture_fill((AVPicture *)f,
7
- (u_int8_t*)tobefreed,
8
+ (uint8_t*)tobefreed,
9
ctx->pix_fmt,ctx->width,ctx->height);
10
11
av_picture_copy((AVPicture *)f, (const AVPicture *) src,
12
13