Displaying 1 result from an estimated 1 matches for "i_commentsp".
Did you mean:
__comments
2007 Feb 07
1
how to delete all comments?
okay all i want to do now is just DELETE any and all comments from a
file. here's what I do:
// open the file and get access to comments
vcedit_open(i_vcStateP, i_fileP);
i_commentsP = vcedit_comments(i_vcStateP);
// now delete all existing comments
vorbis_comment_clear(i_commentsP); <-- is this the correct way??
vorbis_comment_init(i_commentsP); <-- do i need to do this since
it's already clear??
// now update the changes, is this correct??
vcedit_write(i_vcStat...