mirror of https://github.com/mpv-player/mpv
vo_vdpau: Make info struct const
This commit is contained in:
parent
3512f985e0
commit
8a26256b87
|
@ -1227,7 +1227,7 @@ static int control(struct vo *vo, uint32_t request, void *data)
|
||||||
|
|
||||||
const struct vo_driver video_out_vdpau = {
|
const struct vo_driver video_out_vdpau = {
|
||||||
.is_new = 1,
|
.is_new = 1,
|
||||||
.info = &(struct vo_info_s){
|
.info = &(const struct vo_info_s){
|
||||||
"VDPAU with X11",
|
"VDPAU with X11",
|
||||||
"vdpau",
|
"vdpau",
|
||||||
"Rajib Mahapatra <rmahapatra@nvidia.com> and others",
|
"Rajib Mahapatra <rmahapatra@nvidia.com> and others",
|
||||||
|
|
Loading…
Reference in New Issue