Advertisement
Guest User

Untitled

a guest
Mar 8th, 2010
711
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. make -j2
  2. g++ -O2 -g -pthread src/qav.cpp -c -o obj/qav.o
  3. g++ -O2 -g -pthread src/main.cpp -c -o obj/main.o
  4. In file included from src/qav.cpp:20:
  5. src/qav.h:26:34: error: libavformat/avformat.h: No such file or directory
  6. src/qav.h:27:32: error: libswscale/swscale.h: No such file or directory
  7. In file included from src/main.cpp:30:
  8. src/qav.h:26:34: error: libavformat/avformat.h: No such file or directory
  9. src/qav.h:27:32: error: libswscale/swscale.h: No such file or directory
  10. In file included from src/qav.cpp:20:
  11. src/qav.h:50: error: ISO C++ forbids declaration of ‘AVFormatContext’ with no type
  12. src/qav.h:50: error: expected ‘;’ before ‘*’ token
  13. src/qav.cpp: In constructor ‘qav::qvideo::qvideo(const char*, int, int)’:
  14. src/qav.cpp:29: error: ‘pFormatCtx’ was not declared in this scope
  15. src/qav.cpp:29: error: ‘av_open_input_file’ was not declared in this scope
  16. src/qav.cpp:31: error: ‘pFormatCtx’ was not declared in this scope
  17. src/qav.cpp:31: error: ‘av_find_stream_info’ was not declared in this scope
  18. src/qav.cpp:32: error: ‘av_close_input_file’ was not declared in this scope
  19. src/qav.cpp:36: error: ‘pFormatCtx’ was not declared in this scope
  20. src/qav.cpp:36: error: ‘dump_format’ was not declared in this scope
  21. src/qav.cpp:44: error: ‘av_close_input_file’ was not declared in this scope
  22. src/qav.cpp:51: error: ‘av_close_input_file’ was not declared in this scope
  23. src/qav.cpp:55: error: ‘av_close_input_file’ was not declared in this scope
  24. src/qav.cpp:62: error: ‘av_close_input_file’ was not declared in this scope
  25. src/qav.cpp:74: error: ‘av_close_input_file’ was not declared in this scope
  26. src/qav.cpp:82: error: ‘SWS_BICUBIC’ was not declared in this scope
  27. src/qav.cpp:82: error: ‘sws_getContext’ was not declared in this scope
  28. src/qav.cpp:86: error: ‘av_close_input_file’ was not declared in this scope
  29. src/qav.cpp: In member function ‘int qav::qvideo::get_fps_k() const’:
  30. src/qav.cpp:96: error: ‘pFormatCtx’ was not declared in this scope
  31. src/qav.cpp: In member function ‘bool qav::qvideo::get_frame(std::vector<unsigned char, std::allocator<unsigned char> >&, int*)’:
  32. src/qav.cpp:103: error: ‘AVPacket’ was not declared in this scope
  33. src/qav.cpp:103: error: expected `;' before ‘packet’
  34. src/qav.cpp:105: error: ‘packet’ was not declared in this scope
  35. src/qav.cpp:105: error: ‘av_init_packet’ was not declared in this scope
  36. src/qav.cpp:106: error: ‘pFormatCtx’ was not declared in this scope
  37. src/qav.cpp:106: error: ‘av_read_frame’ was not declared in this scope
  38. src/qav.cpp:118: error: ‘sws_scale’ was not declared in this scope
  39. src/qav.cpp:128: error: ‘av_free_packet’ was not declared in this scope
  40. src/qav.cpp: In destructor ‘qav::qvideo::~qvideo()’:
  41. src/qav.cpp:184: error: ‘sws_freeContext’ was not declared in this scope
  42. src/qav.cpp:187: error: ‘pFormatCtx’ was not declared in this scope
  43. src/qav.cpp:187: error: ‘av_close_input_file’ was not declared in this scope
  44. In file included from src/main.cpp:30:
  45. src/qav.h:50: error: ISO C++ forbids declaration of ‘AVFormatContext’ with no type
  46. src/qav.h:50: error: expected ‘;’ before ‘*’ token
  47. make: *** [obj/qav.o] Error 1
  48. make: *** Waiting for unfinished jobs....
  49. src/main.cpp: In function ‘int main(int, char**)’:
  50. src/main.cpp:286: error: ‘av_register_all’ was not declared in this scope
  51. make: *** [obj/main.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement