diff options
Diffstat (limited to 'media/libtheora/lib/info.c')
-rw-r--r-- | media/libtheora/lib/info.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/media/libtheora/lib/info.c b/media/libtheora/lib/info.c index e5cecd2de5..6b9762978b 100644 --- a/media/libtheora/lib/info.c +++ b/media/libtheora/lib/info.c @@ -11,7 +11,7 @@ ******************************************************************** function: - last mod: $Id$ + last mod: $Id: info.c 16503 2009-08-22 18:14:02Z giles $ ********************************************************************/ @@ -54,7 +54,7 @@ void th_comment_init(th_comment *_tc){ memset(_tc,0,sizeof(*_tc)); } -void th_comment_add(th_comment *_tc,const char *_comment){ +void th_comment_add(th_comment *_tc,char *_comment){ char **user_comments; int *comment_lengths; int comment_len; @@ -75,7 +75,7 @@ void th_comment_add(th_comment *_tc,const char *_comment){ _tc->user_comments[_tc->comments]=NULL; } -void th_comment_add_tag(th_comment *_tc,const char *_tag,const char *_val){ +void th_comment_add_tag(th_comment *_tc,char *_tag,char *_val){ char *comment; int tag_len; int val_len; @@ -91,7 +91,7 @@ void th_comment_add_tag(th_comment *_tc,const char *_tag,const char *_val){ _ogg_free(comment); } -char *th_comment_query(th_comment *_tc,const char *_tag,int _count){ +char *th_comment_query(th_comment *_tc,char *_tag,int _count){ long i; int found; int tag_len; @@ -107,7 +107,7 @@ char *th_comment_query(th_comment *_tc,const char *_tag,int _count){ return NULL; } -int th_comment_query_count(th_comment *_tc,const char *_tag){ +int th_comment_query_count(th_comment *_tc,char *_tag){ long i; int tag_len; int count; |