Revision: 1575
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1575&view=rev
Author: jcsjcs
Date: 2007-06-22 10:49:43 -0700 (Fri, 22 Jun 2007)
Log Message:
-----------
src/mp4file.c: fixed charset issue when writing grouping metadata.
Modified Paths:
--------------
gtkpod/trunk/src/mp4file.c
Modified: gtkpod/trunk/src/mp4file.c
===================================================================
--- gtkpod/trunk/src/mp4file.c 2007-06-22 17:34:25 UTC (rev 1574)
+++ gtkpod/trunk/src/mp4file.c 2007-06-22 17:49:43 UTC (rev 1575)
@@ -1,4 +1,4 @@
-/* Time-stamp: <2007-06-23 02:24:54 jcs>
+/* Time-stamp: <2007-06-23 02:49:08 jcs>
|
| Copyright (C) 2002-2005 Jorg Schuler <jcsjcs at users sourceforge net>
| Part of the gtkpod project.
@@ -485,7 +485,9 @@
MP4SetMetadataTempo (mp4File, track->BPM);
- MP4SetMetadataGrouping (mp4File, track->grouping);
+ value = charset_from_utf8 (track->grouping);
+ MP4SetMetadataGrouping (mp4File, value);
+ g_free (value);
value = charset_from_utf8 (track->genre);
MP4SetMetadataGenre (mp4File, value);
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2