Advertisement
Guest User

Untitled

a guest
Dec 19th, 2017
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.33 KB | None | 0 0
  1. encoder/encoder.c: In function 'x264_validate_parameters':
  2. encoder/encoder.c:4424:0: error: unterminated argument list invoking macro "X264_MAX"
  3. }
  4.  
  5. encoder/encoder.c:546:27: error: 'X264_MAX' undeclared (first use in this function); did you mean 'x264_log'?
  6. int max_threads = X264_MAX( 1, ( 16 );
  7. ^~~~~~~~
  8. x264_log
  9. encoder/encoder.c:546:27: note: each undeclared identifier is reported only once for each function it appears in
  10. encoder/encoder.c:546:9: error: expected ',' or ';' at end of input
  11. int max_threads = X264_MAX( 1, ( 16 );
  12. ^~~
  13. encoder/encoder.c:546:9: error: expected declaration or statement at end of input
  14. encoder/encoder.c:546:13: warning: unused variable 'max_threads' [-Wunused-variable]
  15. int max_threads = X264_MAX( 1, ( 16 );
  16. ^~~~~~~~~~~
  17. encoder/encoder.c:546:9: error: expected declaration or statement at end of input
  18. int max_threads = X264_MAX( 1, ( 16 );
  19. ^~~
  20. encoder/encoder.c: At top level:
  21. encoder/encoder.c:43:12: warning: 'x264_encoder_frame_end' declared 'static' but never defined [-Wunused-function]
  22. static int x264_encoder_frame_end( x264_t *h, x264_t *thread_current,
  23. ^~~~~~~~~~~~~~~~~~~~~~
  24. encoder/encoder.c:421:12: warning: 'x264_validate_parameters' defined but not used [-Wunused-function]
  25. static int x264_validate_parameters( x264_t *h, int b_open )
  26. ^~~~~~~~~~~~~~~~~~~~~~~~
  27. encoder/encoder.c:406:13: warning: 'x264_encoder_thread_init' defined but not used [-Wunused-function]
  28. static void x264_encoder_thread_init( x264_t *h )
  29. ^~~~~~~~~~~~~~~~~~~~~~~~
  30. encoder/encoder.c:399:12: warning: 'x264_bitstream_check_buffer_filler' defined but not used [-Wunused-function]
  31. static int x264_bitstream_check_buffer_filler( x264_t *h, int filler )
  32. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  33. encoder/encoder.c:393:12: warning: 'x264_bitstream_check_buffer' defined but not used [-Wunused-function]
  34. static int x264_bitstream_check_buffer( x264_t *h )
  35. ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  36. encoder/encoder.c:209:13: warning: 'x264_slice_header_write' defined but not used [-Wunused-function]
  37. static void x264_slice_header_write( bs_t *s, x264_slice_header_t *sh, int i_nal_ref_idc )
  38. ^~~~~~~~~~~~~~~~~~~~~~~
  39. encoder/encoder.c:118:13: warning: 'x264_slice_header_init' defined but not used [-Wunused-function]
  40. static void x264_slice_header_init( x264_t *h, x264_slice_header_t *sh,
  41. ^~~~~~~~~~~~~~~~~~~~~~
  42. encoder/encoder.c:82:13: warning: 'x264_frame_dump' defined but not used [-Wunused-function]
  43. static void x264_frame_dump( x264_t *h )
  44. ^~~~~~~~~~~~~~~
  45. encoder/encoder.c:61:15: warning: 'x264_ssim' defined but not used [-Wunused-function]
  46. static double x264_ssim( double ssim )
  47. ^~~~~~~~~
  48. encoder/encoder.c:52:15: warning: 'x264_psnr' defined but not used [-Wunused-function]
  49. static double x264_psnr( double sqe, double size )
  50. ^~~~~~~~~
  51. <builtin>: recipe for target 'encoder/encoder.o' failed
  52. make: *** [encoder/encoder.o] Error 1
  53. make: *** Waiting for unfinished jobs....
  54. In file included from encoder/analyse.c:33:0:
  55. encoder/rdo.c: In function 'x264_quant_8x8_trellis':
  56. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  57. for( i = start; i <= end; i+=step )
  58. ^~~
  59. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  60. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  61. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  62. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  63. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  64. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  65. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  66. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  67. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  68. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  69. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  70. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  71. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
  72. encoder/rdo.c:1072:13: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement