Modified:
trunk/Tasks/EncoderTasks/CoreAudioEncoderTask.mm
Log:
Set encoding tool as well as encoded by
Modified: trunk/Tasks/EncoderTasks/CoreAudioEncoderTask.mm
===================================================================
--- trunk/Tasks/EncoderTasks/CoreAudioEncoderTask.mm 2009-09-26 03:35:55 UTC (rev 1426)
+++ trunk/Tasks/EncoderTasks/CoreAudioEncoderTask.mm 2009-09-28 01:20:18 UTC (rev 1427)
@@ -374,8 +374,11 @@
// Encoded by
bundleVersion = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"];
versionString = [NSString stringWithFormat:@"Max %@", bundleVersion];
+ MP4TagsSetEncodingTool(tags, [versionString UTF8String]);
+
+ // TODO: Should this be set to the user's name?
MP4TagsSetEncodedBy(tags, [versionString UTF8String]);
-
+
// Save our changes
MP4TagsStore(tags, mp4FileHandle);
MP4TagsFree(tags);