Skip to content

Commit e876dff

Browse files
Set some higher quality defaults without being too blurry.
1 parent 618d2c6 commit e876dff

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

video/out/gpu/video.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,8 @@ struct gl_video {
295295
};
296296

297297
static const struct gl_video_opts gl_video_opts_def = {
298+
.correct_downscaling = 1,
299+
.linear_downscaling = 0,
298300
.dither_algo = DITHER_FRUIT,
299301
.dither_depth = -1,
300302
.dither_size = 6,
@@ -306,7 +308,7 @@ static const struct gl_video_opts gl_video_opts_def = {
306308
.scaler = {
307309
{{"bilinear", .params={NAN, NAN}}, {.params = {NAN, NAN}},
308310
.cutoff = 0.001}, // scale
309-
{{NULL, .params={NAN, NAN}}, {.params = {NAN, NAN}},
311+
{{"catmull_rom", .params={NAN, NAN}}, {.params = {NAN, NAN}},
310312
.cutoff = 0.001}, // dscale
311313
{{NULL, .params={NAN, NAN}}, {.params = {NAN, NAN}},
312314
.cutoff = 0.001}, // cscale

0 commit comments

Comments
 (0)