mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
utils: drop string_of_FOURCC() in favor of standard GST_FOURCC_* helpers.
This commit is contained in:
parent
44d8bac314
commit
4340372996
3 changed files with 2 additions and 21 deletions
|
@ -449,7 +449,7 @@ gst_vaapi_display_create(GstVaapiDisplay *display)
|
|||
|
||||
GST_DEBUG("%d image formats", n);
|
||||
for (i = 0; i < n; i++)
|
||||
GST_DEBUG(" %s", string_of_FOURCC(formats[i].fourcc));
|
||||
GST_DEBUG(" %" GST_FOURCC_FORMAT, GST_FOURCC_ARGS(formats[i].fourcc));
|
||||
|
||||
priv->image_formats =
|
||||
g_array_new(FALSE, FALSE, sizeof(GstVaapiImageFormat));
|
||||
|
@ -470,7 +470,7 @@ gst_vaapi_display_create(GstVaapiDisplay *display)
|
|||
|
||||
GST_DEBUG("%d subpicture formats", n);
|
||||
for (i = 0; i < n; i++)
|
||||
GST_DEBUG(" %s", string_of_FOURCC(formats[i].fourcc));
|
||||
GST_DEBUG(" %" GST_FOURCC_FORMAT, GST_FOURCC_ARGS(formats[i].fourcc));
|
||||
|
||||
priv->subpicture_formats =
|
||||
g_array_new(FALSE, FALSE, sizeof(GstVaapiImageFormat));
|
||||
|
|
|
@ -40,21 +40,6 @@ vaapi_check_status(VAStatus status, const char *msg)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/* Return a string representation of a FOURCC */
|
||||
const char *string_of_FOURCC(guint32 fourcc)
|
||||
{
|
||||
static int buf;
|
||||
static char str[2][5]; // XXX: 2 buffers should be enough for most purposes
|
||||
|
||||
buf ^= 1;
|
||||
str[buf][0] = fourcc;
|
||||
str[buf][1] = fourcc >> 8;
|
||||
str[buf][2] = fourcc >> 16;
|
||||
str[buf][3] = fourcc >> 24;
|
||||
str[buf][4] = '\0';
|
||||
return str[buf];
|
||||
}
|
||||
|
||||
/* Return a string representation of a VAProfile */
|
||||
const char *string_of_VAProfile(VAProfile profile)
|
||||
{
|
||||
|
|
|
@ -36,10 +36,6 @@ gboolean
|
|||
vaapi_check_status(VAStatus status, const char *msg)
|
||||
attribute_hidden;
|
||||
|
||||
/** Return a string representation of a FOURCC */
|
||||
const char *string_of_FOURCC(guint32 fourcc)
|
||||
attribute_hidden;
|
||||
|
||||
/** Return a string representation of a VAProfile */
|
||||
const char *string_of_VAProfile(VAProfile profile)
|
||||
attribute_hidden;
|
||||
|
|
Loading…
Reference in a new issue