summaryrefslogtreecommitdiffstats
path: root/video/mp_image.c
diff options
context:
space:
mode:
authorAkemi <der.richter@gmx.de>2018-01-20 16:10:42 +0100
committerKevin Mitchell <kevmitch@gmail.com>2018-01-20 14:43:49 -0800
commit828f38e10d184ad1081dc48da7981e7315d94055 (patch)
tree03017ebc5862933258735d4161f55bca0046860a /video/mp_image.c
parentdb08e28304693c1b2e8cbfbad0c28c23c1a414d7 (diff)
downloadmpv-828f38e10d184ad1081dc48da7981e7315d94055.tar.bz2
mpv-828f38e10d184ad1081dc48da7981e7315d94055.tar.xz
video: change some remaining vo_opengl mentions to vo_gpu
Diffstat (limited to 'video/mp_image.c')
-rw-r--r--video/mp_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/mp_image.c b/video/mp_image.c
index 37a4a3cf02..4da576c400 100644
--- a/video/mp_image.c
+++ b/video/mp_image.c
@@ -65,7 +65,7 @@ static int mp_image_layout(int imgfmt, int w, int h, int stride_align,
// Note: for non-mod-2 4:2:0 YUV frames, we have to allocate an additional
// top/right border. This is needed for correct handling of such
- // images in filter and VO code (e.g. vo_vdpau or vo_opengl).
+ // images in filter and VO code (e.g. vo_vdpau or vo_gpu).
for (int n = 0; n < MP_MAX_PLANES; n++) {
int alloc_w = mp_chroma_div_up(w, desc.xs[n]);