Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marc-André Lureau
gst-plugins-good
Commits
020e0dcc
Commit
020e0dcc
authored
Sep 12, 2010
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
soup: hook up i18n bits for plugin
Call bindtextdomain() etc.
parent
9dfad52a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
ext/soup/gstsouphttpsrc.c
ext/soup/gstsouphttpsrc.c
+7
-0
No files found.
ext/soup/gstsouphttpsrc.c
View file @
020e0dcc
...
...
@@ -1446,6 +1446,13 @@ gst_soup_http_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
static
gboolean
plugin_init
(
GstPlugin
*
plugin
)
{
#ifdef ENABLE_NLS
GST_DEBUG
(
"binding text domain %s to locale dir %s"
,
GETTEXT_PACKAGE
,
LOCALEDIR
);
bindtextdomain
(
GETTEXT_PACKAGE
,
LOCALEDIR
);
bind_textdomain_codeset
(
GETTEXT_PACKAGE
,
"UTF-8"
);
#endif
return
gst_element_register
(
plugin
,
"souphttpsrc"
,
GST_RANK_PRIMARY
,
GST_TYPE_SOUP_HTTP_SRC
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment