I am looking to increase the maximum resolution that VLC supports. Services like Potplayer and MPV allow this resolution however, I would like to use some of VLC's other features.
Looking through the source code I found this files in demux and more importantly this function in modules/codec/avcodec/video.c that limits the resolution:
Code: Select all
if( width == 0 || height == 0 || width > 8192 || height > 8192 ||
width < ctx->width || height < ctx->height )
{
msg_Err(dec, "Invalid frame size %dx%d vsz %dx%d",