diff --git a/src/video_output/vout_subpictures.c b/src/video_output/vout_subpictures.c index fb719998de45b8bec259c03ffbd521bbc00a108d..1253cd3b045e1eca038b9d4b15382ebc5cc2c0fb 100644 --- a/src/video_output/vout_subpictures.c +++ b/src/video_output/vout_subpictures.c @@ -1001,9 +1001,11 @@ static struct subpicture_region_rendered *SpuRenderRegion(spu_t *spu, /* Place the picture * We compute the position in the rendered size */ - int i_align = region->i_align; - if (channel_order == VLC_VOUT_ORDER_SECONDARY) - i_align = sys->secondary_alignment >= 0 ? sys->secondary_alignment : i_align; + int i_align; + if (channel_order == VLC_VOUT_ORDER_SECONDARY && sys->secondary_alignment >= 0) + i_align = sys->secondary_alignment; + else + i_align = region->i_align; SpuRegionPlace(&x_offset, &y_offset, subpic, region, i_align);