dump.c
上传用户:luping1608
上传日期:2007-01-06
资源大小:38k
文件大小:1k
源码类别:

多媒体

开发平台:

Unix_Linux

  1. #include "quicktime.h"
  2. main(int argc, char *argv[])
  3. {
  4. quicktime_t *file;
  5. int result = 0;
  6. if(argc < 2)
  7. {
  8. printf("Need a movie.n");
  9. exit(1);
  10. }
  11. if(!(file = quicktime_open(argv[1], 1, 0)))
  12. {
  13. printf("Open failedn");
  14. exit(1);
  15. }
  16. quicktime_dump(file);
  17. //while(!result)
  18. //{
  19. // result = quicktime_read_atom(file);
  20. // if(!result)
  21. // {
  22. // quicktime_skip_atom(file);
  23. // printf("%c%c%c%c %ldn", file->atom.type[0], file->atom.type[1], file->atom.type[2], file->atom.type[3], file->atom.end);
  24. // }
  25. //};
  26. quicktime_close(file);
  27. }