summaryrefslogtreecommitdiffstats
path: root/libhb/ports.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2019-03-13 16:12:32 -0600
committerJohn Stebbins <[email protected]>2019-03-13 16:12:32 -0600
commitbf6a9cfeea4b940989b99d15aa9099a35a047dbe (patch)
tree4e948014129b26b8074b2df3b4cf749a5b6e136c /libhb/ports.c
parent72e71b67c419960b5bca15af8a85219d54230fe3 (diff)
qsv: fix build when qsv is disabled
Diffstat (limited to 'libhb/ports.c')
-rw-r--r--libhb/ports.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libhb/ports.c b/libhb/ports.c
index 02b486b4d..226b7ba73 100644
--- a/libhb/ports.c
+++ b/libhb/ports.c
@@ -1670,8 +1670,8 @@ void hb_display_close(hb_display_t ** _d)
#else // !SYS_LINUX
-hb_display_t * hb_display_init(const char * driver_name,
- const char * interface_name)
+hb_display_t * hb_display_init(const char * driver_name,
+ const char * const * interface_names)
{
return NULL;
}
@@ -1684,8 +1684,8 @@ void hb_display_close(hb_display_t ** _d)
#endif // SYS_LINUX
#else // !USE_QSV
-hb_display_t * hb_display_init(const char * driver_name,
- const char * interface_name)
+hb_display_t * hb_display_init(const char * driver_name,
+ const char * const * interface_names)
{
return NULL;
}