Fix 64bit build error 73/246673/3 submit/tizen/20201103.020205
authorMinje Ahn <minje.ahn@samsung.com>
Tue, 3 Nov 2020 03:50:42 +0000 (12:50 +0900)
committerMinje ahn <minje.ahn@samsung.com>
Tue, 3 Nov 2020 03:59:02 +0000 (03:59 +0000)
Change-Id: I116271cabe7832f108c1bba2032a24117c1c5a70
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
formats/ffmpeg/mm_file_format_mp3.c

index ec1a1ee..3616643 100644 (file)
@@ -608,7 +608,7 @@ static bool __AvGetID3v2Header(unsigned char *buf, size_t buf_size, AvTagVer2Add
 
 static bool __AvGetMp3HeaderInfo(MMFileIOHandle *hFile, AvFileContentInfo *pInfo)
 {
-       unsigned long preHeaderGap = 0;
+       long preHeaderGap = 0;
        unsigned char header[MP3_FORMAT_HEADER_LEN] = {0, };
 
        mm_file_retvm_if_fails(DEBUG, hFile, false);