[Thoggen-cvs] SF.net SVN: thoggen: [276] trunk/thoggen
Status: Beta
Brought to you by:
tp-m
|
From: <tp...@us...> - 2007-12-13 20:04:30
|
Revision: 276
http://thoggen.svn.sourceforge.net/thoggen/?rev=276&view=rev
Author: tp-m
Date: 2007-12-13 12:04:13 -0800 (Thu, 13 Dec 2007)
Log Message:
-----------
patch by: Bram Neijt <bn...@gm...>
* src/th-job.c: (th_job_set_filename_from_disc_title):
Use .ogv as extension for Ogg Video files instead of
.ogg, as recommended by the Xiph folks in
http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
Modified Paths:
--------------
trunk/thoggen/ChangeLog
trunk/thoggen/src/th-job.c
Modified: trunk/thoggen/ChangeLog
===================================================================
--- trunk/thoggen/ChangeLog 2007-10-08 12:08:43 UTC (rev 275)
+++ trunk/thoggen/ChangeLog 2007-12-13 20:04:13 UTC (rev 276)
@@ -1,3 +1,12 @@
+2007-12-13 Tim-Philipp Müller <tim at centricular dot net>
+
+ patch by: Bram Neijt <bn...@gm...>
+
+ * src/th-job.c: (th_job_set_filename_from_disc_title):
+ Use .ogv as extension for Ogg Video files instead of
+ .ogg, as recommended by the Xiph folks in
+ http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
+
2007-09-30 Tim-Philipp Müller <tim at centricular dot net>
patch by: Stephane Loeuillet <leroutier users sourceforge net>
Modified: trunk/thoggen/src/th-job.c
===================================================================
--- trunk/thoggen/src/th-job.c 2007-10-08 12:08:43 UTC (rev 275)
+++ trunk/thoggen/src/th-job.c 2007-12-13 20:04:13 UTC (rev 276)
@@ -2183,7 +2183,7 @@
disc_title_lc = g_utf8_strdown (disc_title, -1);
g_strdelimit (disc_title_lc, "\\/ ", '-');
- fn = g_strdup_printf ("%s/%s-%02u.ogg", homedir, disc_title_lc, j->priv->title_num + 1);
+ fn = g_strdup_printf ("%s/%s-%02u.ogv", homedir, disc_title_lc, j->priv->title_num + 1);
g_free (disc_title_lc);
}
@@ -2195,7 +2195,7 @@
if (id && strchr (id, '-'))
*strchr (id, '-') = 0x00;
- fn = g_strdup_printf ("%s/dvd-%s-%02u.ogg", homedir, (id) ? id : "", j->priv->title_num + 1);
+ fn = g_strdup_printf ("%s/dvd-%s-%02u.ogv", homedir, (id) ? id : "", j->priv->title_num + 1);
g_free (id);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|