On Wed, Sep 29, 2021 at 9:21 AM Maram, Saber <[email protected]> wrote:
> Do you have a branch on GitHub that you can share? > > not on github but in our gitlab: > http://gitlab.devcups.com/devcups/webconnect-server-h264 > The git history of the above repository shows that the entire guacamole-server source was copied into place, effectively erasing the original repository's git history. Before you get too far with this, I highly recommend recreating the repository such that it preserves the original git history, and re-applying your other commits on top of that. You will otherwise cause yourself major trouble in the future when these changes reach the point that they can be contributed. Much of the content of the changes after the initial copy looks like experimental tweaking to established H264 encoding code. Is this a copy of my POC-h264-encoding branch? ... and my custum version of ffmpeg. > > I just tested the XU4 gpu which doesnt run well with default ffmpeg. > it needs some patches her a small one: > > - OFFSET(num_capture_buffers), AV_OPT_TYPE_INT, {.i64 = 20}, 20, > INT_MAX, FLAGS }, > + OFFSET(num_capture_buffers), AV_OPT_TYPE_INT, {.i64 = 16}, 8, > INT_MAX, FLAGS }, > > - OFFSET(num_capture_buffers), AV_OPT_TYPE_INT, {.i64 = 4 }, 4, > INT_MAX, FLAGS } > + OFFSET(num_capture_buffers), AV_OPT_TYPE_INT, {.i64 = 8 }, 4, > INT_MAX, FLAGS } > Are you going to work with FFMpeg to contribute those changes and remove the need for custom anything? - Mike
