mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Fix crash with VA-API vdpau backend.
This commit is contained in:
parent
c2556eb90a
commit
ac1d5250c8
@ -1,3 +1,8 @@
|
|||||||
|
User johns
|
||||||
|
Date:
|
||||||
|
|
||||||
|
Fix crash with VA-API vdpau backend.
|
||||||
|
|
||||||
User mini73
|
User mini73
|
||||||
Date: Sat Oct 11 16:53:18 CEST 2014
|
Date: Sat Oct 11 16:53:18 CEST 2014
|
||||||
|
|
||||||
|
8
video.c
8
video.c
@ -2380,11 +2380,12 @@ static int VaapiInit(const char *display_name)
|
|||||||
int entrypoint_n;
|
int entrypoint_n;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
vaQueryConfigEntrypoints(VaDisplay, VAProfileNone, entrypoints,
|
|
||||||
&entrypoint_n);
|
|
||||||
|
|
||||||
VaapiVideoProcessing = 0;
|
VaapiVideoProcessing = 0;
|
||||||
|
if (!vaQueryConfigEntrypoints(VaDisplay, VAProfileNone, entrypoints,
|
||||||
|
&entrypoint_n)) {
|
||||||
|
|
||||||
for (i = 0; i < entrypoint_n; i++) {
|
for (i = 0; i < entrypoint_n; i++) {
|
||||||
|
fprintf(stderr, "oops %d\n", i);
|
||||||
if (entrypoints[i] == VAEntrypointVideoProc) {
|
if (entrypoints[i] == VAEntrypointVideoProc) {
|
||||||
Info("video/vaapi: supports video processing\n");
|
Info("video/vaapi: supports video processing\n");
|
||||||
VaapiVideoProcessing = 1;
|
VaapiVideoProcessing = 1;
|
||||||
@ -2392,6 +2393,7 @@ static int VaapiInit(const char *display_name)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user