Move log function to a dedicated file and rename it along the way

Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
This commit is contained in:
Paul Kocialkowski
2018-04-24 17:12:29 +02:00
parent 9de2ba88b5
commit 6cd00b758c
10 changed files with 89 additions and 26 deletions
+2 -12
View File
@@ -36,6 +36,7 @@
#include <va/va_backend.h>
#include "sunxi_cedrus.h"
#include "utils.h"
#include <assert.h>
#include <stdlib.h>
@@ -49,17 +50,6 @@
#include <linux/videodev2.h>
void sunxi_cedrus_msg(const char *msg, ...)
{
va_list args;
/* We need to use stderr if we want to be heard */
fprintf(stderr, "sunxi_cedrus_drv_video: ");
va_start(args, msg);
vfprintf(stderr, msg, args);
va_end(args);
}
/* Set default visibility for the init function only. */
VAStatus __attribute__((visibility("default")))
VA_DRIVER_INIT_FUNC(VADriverContextP context);
@@ -153,7 +143,7 @@ VAStatus VA_DRIVER_INIT_FUNC(VADriverContextP context)
rc = ioctl(driver_data->video_fd, VIDIOC_QUERYCAP, &capability);
if (rc < 0 || !(capability.capabilities & V4L2_CAP_VIDEO_M2M_MPLANE)) {
sunxi_cedrus_msg("%s does not support m2m mplanes\n", path);
sunxi_cedrus_log("%s does not support m2m mplanes\n", path);
return VA_STATUS_ERROR_OPERATION_FAILED;
}