main.cc
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:1k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.    File: main.cc
  3.    Description:
  4.    Little test to see if function mpeg2video works.
  5. */
  6. #include "athread.hh"
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <sys/time.h>
  10. #include <fstream.h>
  11. #include <String.h>
  12. #ifdef USE_OPENPTC
  13. #include <ptc/ptc.h>
  14. #endif
  15. #include "error.hh"
  16. #include "debug.hh"
  17. #include "util.hh"
  18. #include "sync.hh"
  19. #include "mpeg2const.hh"
  20. #include "mpeg2buff.hh"
  21. #include "display.hh"
  22. #include "idct.hh"
  23. #include "vstream.hh"
  24. #include "layerdata.hh"
  25. #include "mpeg2video.hh"
  26. int main(int argc, char* argv[]){
  27.   // create player
  28.   Mpeg2Video* mpeg2video=new Mpeg2Video(0, 0, argc, argv);   
  29.   // delete player which will wait for player to finish
  30.   delete mpeg2video;
  31.   exit(0);
  32. }
  33. void printbits(int, int, int){ return; }