Fixed broken build. Bad Erik! ^_^

This commit is contained in:
Thulinma 2013-08-26 11:21:43 +02:00
parent f17406edd6
commit 203a4382a7
3 changed files with 5 additions and 5 deletions

View file

@ -4191,7 +4191,7 @@ namespace MP4 {
setDepth(0x0018);
}
void VisualSampleEntry::setCodec(char* newCodec){
void VisualSampleEntry::setCodec(const char* newCodec){
memcpy(data + 4, newCodec, 4);
}
@ -4304,7 +4304,7 @@ namespace MP4 {
setSampleRate(44100);
}
void AudioSampleEntry::setCodec(char* newCodec){
void AudioSampleEntry::setCodec(const char* newCodec){
memcpy(data + 4, newCodec, 4);
}