gstreamer: use PRIu64 marco for uint64_t

This commit is contained in:
Alam Arias 2012-06-17 09:55:51 -04:00
parent 0ddea5afa3
commit 477b90c439

View File

@ -1186,7 +1186,7 @@ static boolean tsmf_gstreamer_decodeEx(ITSMFDecoder * decoder, const uint8 * dat
if (fout)
{
fprintf(fout, "%llu\n", start_time);
fprintf(fout, "%"PRIu64"\n", start_time);
fclose(fout);
}
@ -1212,7 +1212,7 @@ static boolean tsmf_gstreamer_decodeEx(ITSMFDecoder * decoder, const uint8 * dat
if (fin)
{
uint64 AStartTime = 0;
fscanf(fin, "%llu", &AStartTime);
fscanf(fin, "%"PRIu64, &AStartTime);
fclose(fin);
if (start_time > AStartTime)
{
@ -1246,7 +1246,7 @@ static boolean tsmf_gstreamer_decodeEx(ITSMFDecoder * decoder, const uint8 * dat
if (fin)
{
uint64 VStartTime = 0;
fscanf(fin, "%llu", &VStartTime);
fscanf(fin, "%"PRIu64, &VStartTime);
fclose(fin);
if (start_time > VStartTime)
{