# HG changeset patch
# User Steve Borho <[email protected]>
# Date 1439549899 -19800
# Fri Aug 14 16:28:19 2015 +0530
# Node ID 598a3eee33da4bb4b5bea2ad098fa30724a0cb2f
# Parent d56b2466c04459205287e1581d8a36eebf372ba6
api: nit
diff -r d56b2466c044 -r 598a3eee33da source/encoder/api.cpp
--- a/source/encoder/api.cpp Wed Aug 12 18:12:20 2015 +0530
+++ b/source/encoder/api.cpp Fri Aug 14 16:28:19 2015 +0530
@@ -443,7 +443,7 @@
e = X265_API_QUERY_ERR_FUNC_NOT_FOUND;
api_query_func query = (api_query_func)GetProcAddress(h, method);
if (query)
- api = query(bitDepth,apiVersion,err);
+ api = query(bitDepth, apiVersion, err);
}
#else
void* h = dlopen(libname, RTLD_LAZY | RTLD_LOCAL);
@@ -452,7 +452,7 @@
e = X265_API_QUERY_ERR_FUNC_NOT_FOUND;
api_query_func query = (api_query_func)dlsym(h, method);
if (query)
- api = query(bitDepth,apiVersion,err);
+ api = query(bitDepth, apiVersion, err);
}
#endif
_______________________________________________
x265-devel mailing list
[email protected]
https://mailman.videolan.org/listinfo/x265-devel