Advertisement
Guest User

Gün Demirbaş

a guest
Jul 14th, 2010
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. #in ffmpegVirtualfile.cxx
  2. #line 97 and 99 must swap
  3. #this is swapped version...
  4. ...
  5. static int
  6. #if LIBAVFORMAT_VERSION_INT < 3425280
  7. pandavfs_write(URLContext *h, const unsigned char *buf, int size) {
  8. #else
  9. pandavfs_write(URLContext *h, unsigned char *buf, int size) {
  10. #endif
  11.   movies_cat.error() << "ffmpeg is trying to write to the VFS.\n";
  12.   return -1;
  13. }
  14. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement