utils: drop string_of_FOURCC() in favor of standard GST_FOURCC_* helpers.

This commit is contained in:
Gwenole Beauchesne 2012-01-13 11:46:55 +01:00
parent 44d8bac314
commit 4340372996
3 changed files with 2 additions and 21 deletions

View file

@ -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));

View file

@ -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)
{

View file

@ -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;