Skip to content

Commit

Permalink
fixup! Add webdownload element
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoch committed Nov 5, 2024
1 parent 69360ae commit d580304
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ gst_web_utils_video_format_from_web_format (const char *vf_format)
}

const char *
gst_web_utils_convert_video_format (GstVideoFormat format)
gst_web_utils_video_format_to_web_format (GstVideoFormat format)
{
const char *vf_format = NULL;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ GstMessage *gst_web_utils_message_new_request_object (GstElement *src,
const gchar *cb_name, const gchar *object_name, gpointer user_data);
GstVideoFormat gst_web_utils_video_format_from_web_format (
const char *vf_format);
const char *gst_web_utils_convert_video_format (GstVideoFormat format);
const char *gst_web_utils_video_format_to_web_format (GstVideoFormat format);

G_END_DECLS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ gst_web_video_frame_map_internal (
if (info != NULL) {
const char *format;

format = gst_web_utils_convert_video_format (
format = gst_web_utils_video_format_to_web_format (
GST_VIDEO_FORMAT_INFO_FORMAT (info->finfo));
if (format == NULL) {
GST_ERROR ("Format %s is not supported.",
Expand Down

0 comments on commit d580304

Please sign in to comment.