mpg123-1.32.4

This commit is contained in:
Ozkan Sezer
2024-01-10 20:40:40 +03:00
parent 530d2f6056
commit a06847ca33
142 changed files with 1370 additions and 1487 deletions

View File

@@ -8,7 +8,7 @@
#include "config.h"
#include "version.h"
#include "compat.h"
#include "compat/compat.h"
#if defined(WIN32) && defined(DYNAMIC_BUILD)
#define LINK_MPG123_DLL
@@ -159,16 +159,16 @@ int do_work(mpg123_handle *m)
return MPG123_ERR;
}
if(param.verbose)
fprintf(stderr, "%"SIZE_P": header 0x%08lx, %"SIZE_P" body bytes\n"
, (size_p)++count, header, (size_p)bodybytes);
fprintf(stderr, "%zu: header 0x%08lx, %zu body bytes\n"
, ++count, header, bodybytes);
}
}
if(ret != MPG123_DONE)
fprintf(stderr, "Some error occured (non-fatal?): %s\n", mpg123_strerror(m));
if(param.verbose) fprintf(stderr, "Done with %"SIZE_P" MPEG frames.\n"
, (size_p)count);
if(param.verbose)
fprintf(stderr, "Done with %zu MPEG frames.\n", count);
return MPG123_OK;
}