Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

28 lignes
421B

  1. #ifndef _mov_file_buffer_h_
  2. #define _mov_file_buffer_h_
  3. #include <stdio.h>
  4. #include <stdint.h>
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. struct mov_file_cache_t
  9. {
  10. FILE* fp;
  11. uint8_t ptr[800];
  12. unsigned int len;
  13. unsigned int off;
  14. uint64_t tell;
  15. };
  16. const struct mov_buffer_t* mov_file_cache_buffer(void);
  17. const struct mov_buffer_t* mov_file_buffer(void);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif /* !_mov_file_buffer_h_ */