File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/AvTranscoder/properties Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ size_t FileProperties::getBitRate() const
210
210
return _avFormatContext->bit_rate ;
211
211
}
212
212
213
- unsigned __int64 FileProperties::getFileSize () const
213
+ uint64_t FileProperties::getFileSize () const
214
214
{
215
215
std::ifstream in (getFilename ().c_str (), std::ios::binary | std::ios::ate);
216
216
return in.tellg ();
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class AvExport FileProperties
49
49
double getStartTime () const ;
50
50
float getDuration () const ; // /< in seconds, 0 if not available
51
51
size_t getBitRate () const ; // /< total stream bitrate in bit/s, 0 if not available (result of a computation by ffmpeg)
52
- unsigned __int64 getFileSize () const ; // /< in bytes
52
+ uint64_t getFileSize () const ; // /< in bytes
53
53
size_t getPacketSize () const ;
54
54
55
55
const PropertyVector& getMetadatas () const { return _metadatas; }
You can’t perform that action at this time.
0 commit comments