diff options
author | Denis Loh <denis.loh@gmail.com> | 2009-12-29 19:34:50 +0100 |
---|---|---|
committer | Denis Loh <denis.loh@gmail.com> | 2009-12-29 19:34:50 +0100 |
commit | 60db82604cd0ab407e857b9f11d9588f9076333b (patch) | |
tree | 11cc9c5f4a5b4a784727eccfecb9e5cca2c69ac3 /receiver | |
parent | 2d245fcabb385347359759de8e6c40ce16e43cab (diff) | |
download | vdr-plugin-upnp-60db82604cd0ab407e857b9f11d9588f9076333b.tar.gz vdr-plugin-upnp-60db82604cd0ab407e857b9f11d9588f9076333b.tar.bz2 |
Added mpeg4 p2 profiles
Diffstat (limited to 'receiver')
-rw-r--r-- | receiver/recplayer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/receiver/recplayer.cpp b/receiver/recplayer.cpp index a9ea85b..954c9c8 100644 --- a/receiver/recplayer.cpp +++ b/receiver/recplayer.cpp @@ -102,7 +102,7 @@ int cRecordingPlayer::seek(off_t offset, int origin){ while(this->mOffset > (fileEndOffset = this->mOffsets[this->mIndex])){ // If its not possible to switch to next file, there was an error if(!this->NextFile()){ - ERROR("Offset %ld not in the range of a file!", offset); + ERROR("Offset %lld not in the range of a file!", offset); return -1; } } @@ -133,7 +133,7 @@ void cRecordingPlayer::Scan(){ } fseek(File, 0, SEEK_END); off_t offset = ftell(File); - MESSAGE(VERBOSE_RECORDS, "File %d has its last offset at %ld", i, offset); + MESSAGE(VERBOSE_RECORDS, "File %d has its last offset at %lld", i, offset); this->mOffsets[i+1] = this->mOffsets[i] + offset; this->mTotalLenght = this->mOffsets[i+1]; i++; |