From 60db82604cd0ab407e857b9f11d9588f9076333b Mon Sep 17 00:00:00 2001 From: Denis Loh Date: Tue, 29 Dec 2009 19:34:50 +0100 Subject: Added mpeg4 p2 profiles --- database/object.h | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'database/object.h') diff --git a/database/object.h b/database/object.h index 245a617..9c2c133 100644 --- a/database/object.h +++ b/database/object.h @@ -137,7 +137,7 @@ private: cString mProtocolInfo; cString mContentType; cString mImportURI; - unsigned long mSize; + off64_t mSize; unsigned int mBitrate; unsigned int mSampleFrequency; unsigned int mBitsPerSample; @@ -211,14 +211,6 @@ public: * @return the resource type */ int getResourceType() const { return this->mResourceType; } - /** - * Get the size - * - * Returns the resource size or -1 if its unknown - * - * @return the resource size or -1 if unknown - */ - unsigned long getSize() const { return this->mSize; } /** * Get the file size * @@ -227,7 +219,7 @@ public: * * @return the file size */ - off64_t getFileSize() const; + off64_t getFileSize() const { return this->mSize; }; /** * Get the last modification * -- cgit v1.2.3