Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2015
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /usr/local/bin/gcc ./example.c -lavformat -lavutil -lavcodec
  2. /tmp/ccV61mWV.o: In function `main':
  3. example.c:(.text+0x5): undefined reference to `av_frame_alloc'
  4. collect2: Fehler: ld gab 1 als Ende-Status zurück
  5.  
  6. //program:
  7. #include <libavformat/avformat.h>
  8. #include <libavcodec/avcodec.h>
  9. #include <libavutil/avutil.h>
  10.  
  11. int main()
  12. {
  13. av_frame_alloc();
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement