Removed __cdecl from asm header files and corrected parameters printed by the program

This commit is contained in:
Marko Viitanen 2014-01-28 16:40:38 +02:00
parent 23427a72cf
commit 3a95d49484
3 changed files with 3 additions and 3 deletions

View file

@ -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, "hevc_encoder -i <input> -w <width> -h <height> -o <output>\r\n");
fprintf(stderr, "Optional parameters:\r\n"); fprintf(stderr, "Optional parameters:\r\n");
fprintf(stderr, " -n <frames> : number of frames to decode\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); config_destroy(cfg);
return EXIT_FAILURE; return EXIT_FAILURE;

View file

@ -13,7 +13,7 @@
#ifndef _TEST64_H_ #ifndef _TEST64_H_
#define _TEST64_H_ #define _TEST64_H_
void __cdecl cpuId64(int* ecx, int *edx ); void cpuId64(int* ecx, int *edx );
#endif #endif

View file

@ -13,7 +13,7 @@
#ifndef _TEST_H_ #ifndef _TEST_H_
#define _TEST_H_ #define _TEST_H_
void __cdecl cpuId32(int* ecx, int *edx ); void cpuId32(int* ecx, int *edx );
#endif #endif