Advertisement
Guest User

Untitled

a guest
Nov 27th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. CC xineplug_vo_out_dxr3_la-dxr3_spu_encoder.lo
  2. ffmpeg_encoder.c: In function ‘dxr3_lavc_init’:
  3. ffmpeg_encoder.c:80:3: error: implicit declaration of function ‘avcodec_init’ [-Werror=implicit-function-declaration]
  4. avcodec_init();
  5. ^
  6. ffmpeg_encoder.c:80:3: warning: nested extern declaration of ‘avcodec_init’ [-Wnested-externs]
  7. ffmpeg_encoder.c: In function ‘lavc_on_update_format’:
  8. ffmpeg_encoder.c:151:19: error: implicit declaration of function ‘avcodec_alloc_context’ [-Werror=implicit-function-declaration]
  9. this->context = avcodec_alloc_context();
  10. ^
  11. ffmpeg_encoder.c:151:3: warning: nested extern declaration of ‘avcodec_alloc_context’ [-Wnested-externs]
  12. this->context = avcodec_alloc_context();
  13. ^
  14. ffmpeg_encoder.c:151:17: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  15. this->context = avcodec_alloc_context();
  16. ^
  17. ffmpeg_encoder.c:157:3: warning: ‘avcodec_alloc_frame’ is deprecated [-Wdeprecated-declarations]
  18. this->picture = avcodec_alloc_frame();
  19. ^
  20. In file included from ffmpeg_encoder.c:44:0:
  21. /usr/include/x86_64-linux-gnu/libavcodec/avcodec.h:3927:10: note: declared here
  22. AVFrame *avcodec_alloc_frame(void);
  23. ^
  24. ffmpeg_encoder.c:203:3: warning: ‘me_method’ is deprecated [-Wdeprecated-declarations]
  25. this->context->me_method = ME_ZERO; /*motion estimation type*/
  26. ^
  27. In file included from ffmpeg_encoder.c:44:0:
  28. /usr/include/x86_64-linux-gnu/libavcodec/avcodec.h:1729:30: note: declared here
  29. attribute_deprecated int me_method;
  30. ^
  31. ffmpeg_encoder.c:217:7: error: implicit declaration of function ‘avcodec_open’ [-Werror=implicit-function-declaration]
  32. if (avcodec_open(this->context, codec) < 0) {
  33. ^
  34. ffmpeg_encoder.c:217:3: warning: nested extern declaration of ‘avcodec_open’ [-Wnested-externs]
  35. if (avcodec_open(this->context, codec) < 0) {
  36. ^
  37. ffmpeg_encoder.c: In function ‘lavc_on_display_frame’:
  38. ffmpeg_encoder.c:252:3: warning: ‘avcodec_encode_video’ is deprecated [-Wdeprecated-declarations]
  39. size = avcodec_encode_video(this->context, this->ffmpeg_buffer, DEFAULT_BUFFER_SIZE, this->picture);
  40. ^
  41. In file included from ffmpeg_encoder.c:44:0:
  42. /usr/include/x86_64-linux-gnu/libavcodec/avcodec.h:4896:5: note: declared here
  43. int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
  44. ^
  45. CC xineplug_vo_out_dxr3_la-dxr3_scr.lo
  46. cc1: some warnings being treated as errors
  47. Makefile:771: recipe for target 'xineplug_vo_out_dxr3_la-ffmpeg_encoder.lo' failed
  48. make[2]: *** [xineplug_vo_out_dxr3_la-ffmpeg_encoder.lo] Error 1
  49. make[2]: *** Waiting for unfinished jobs....
  50. make[2]: Leaving directory '/home/thomas/openpliPC/xine-lib/src/dxr3'
  51. Makefile:601: recipe for target 'install-recursive' failed
  52. make[1]: *** [install-recursive] Error 1
  53. make[1]: Leaving directory '/home/thomas/openpliPC/xine-lib/src'
  54. Makefile:677: recipe for target 'install-recursive' failed
  55. make: *** [install-recursive] Error 1
  56.  
  57. An error occured while building xine-lib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement