mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
Removed __cdecl from asm header files and corrected parameters printed by the program
This commit is contained in:
parent
23427a72cf
commit
3a95d49484
|
@ -84,7 +84,7 @@ int main(int argc, char *argv[])
|
|||
fprintf(stderr, "hevc_encoder -i <input> -w <width> -h <height> -o <output>\r\n");
|
||||
fprintf(stderr, "Optional parameters:\r\n");
|
||||
fprintf(stderr, " -n <frames> : number of frames to decode\r\n");
|
||||
fprintf(stderr, " -s <frames> : number of frames to skip from the beginning\r\n");
|
||||
fprintf(stderr, " -q <QP> : Quantization Parameter, default 32\r\n");
|
||||
|
||||
config_destroy(cfg);
|
||||
return EXIT_FAILURE;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef _TEST64_H_
|
||||
#define _TEST64_H_
|
||||
|
||||
void __cdecl cpuId64(int* ecx, int *edx );
|
||||
void cpuId64(int* ecx, int *edx );
|
||||
|
||||
|
||||
#endif
|
|
@ -13,7 +13,7 @@
|
|||
#ifndef _TEST_H_
|
||||
#define _TEST_H_
|
||||
|
||||
void __cdecl cpuId32(int* ecx, int *edx );
|
||||
void cpuId32(int* ecx, int *edx );
|
||||
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue