ext/mythtv/gstmythtvsrc.c: Add examples for live mythtv:// URIs to docs (#468039).

Original commit message from CVS:
Patch by: Bastien Nocera  <hadess at hadess net>
* ext/mythtv/gstmythtvsrc.c:
Add examples for live mythtv:// URIs to docs (#468039).
Also convert some tabs into spaces.
This commit is contained in:
Bastien Nocera 2007-08-20 09:13:47 +00:00 committed by Tim-Philipp Müller
parent efea15c44c
commit cd2e9804d6
2 changed files with 25 additions and 14 deletions

View file

@ -1,3 +1,11 @@
2007-08-20 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Bastien Nocera <hadess at hadess net>
* ext/mythtv/gstmythtvsrc.c:
Add examples for live mythtv:// URIs to docs (#468039).
Also convert some tabs into spaces.
2007-08-19 Sebastian Dröge <slomo@circular-chaos.org>
* gst/filter/gstbpwsinc.c:

View file

@ -139,9 +139,10 @@ _urihandler_init (GType type)
}
GST_BOILERPLATE_FULL (GstMythtvSrc, gst_mythtv_src, GstPushSrc,
GST_TYPE_PUSH_SRC, _urihandler_init)
GST_TYPE_PUSH_SRC, _urihandler_init);
static void gst_mythtv_src_base_init (gpointer g_class)
static void
gst_mythtv_src_base_init (gpointer g_class)
{
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
@ -174,7 +175,9 @@ gst_mythtv_src_class_init (GstMythtvSrcClass * klass)
g_param_spec_string ("location", "Location",
"The location. In the form:"
"\n\t\t\tmyth://a.com/file.nuv"
"\n\t\t\tmyth://a.com:23223/file.nuv "
"\n\t\t\tmyth://a.com:23223/file.nuv"
"\n\t\t\tmyth://a.com/?channel=123"
"\n\t\t\tmyth://a.com/?channel=Channel%203"
"\n\t\t\ta.com/file.nuv - default scheme 'myth'",
"", G_PARAM_READWRITE));