diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-07-04 01:35:03 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-07-04 01:35:03 +0200 |
commit | 62d61fda12e3774fee6b671e44fb89bd2ef8da8c (patch) | |
tree | d5050689876d9adbe51bdf137475b3c3bc332c63 /src/capture/xcomposite_cuda.c | |
parent | ea7b58d7f92b179a4c2717237422e1200b5be673 (diff) |
Add support for software video encoding with '-encoder cpu' option, currently h264 only
Diffstat (limited to 'src/capture/xcomposite_cuda.c')
-rw-r--r-- | src/capture/xcomposite_cuda.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/capture/xcomposite_cuda.c b/src/capture/xcomposite_cuda.c index c436221..b661fb5 100644 --- a/src/capture/xcomposite_cuda.c +++ b/src/capture/xcomposite_cuda.c @@ -96,6 +96,8 @@ static int gsr_capture_xcomposite_cuda_capture(gsr_capture *cap, AVFrame *frame) gsr_capture_xcomposite_capture(&cap_xcomp->xcomposite, frame); + cap_xcomp->xcomposite.params.egl->eglSwapBuffers(cap_xcomp->xcomposite.params.egl->egl_display, cap_xcomp->xcomposite.params.egl->egl_surface); + const int div[2] = {1, 2}; // divide UV texture size by 2 because chroma is half size for(int i = 0; i < 2; ++i) { CUDA_MEMCPY2D memcpy_struct; |