Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

43 lines
1.4KB

  1. #ifndef _hls_media_h_
  2. #define _hls_media_h_
  3. #include <stdint.h>
  4. #include <stddef.h>
  5. #define HLS_FLAGS_KEYFRAME 0x8000
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. typedef struct hls_media_t hls_media_t;
  10. /// @param[in] param user-defined parameter(hls_media_create)
  11. /// @param[in] data ts file content
  12. /// @param[in] bytes ts file length in byte
  13. /// @param[in] pts ts file first pts/dts(ms)
  14. /// @param[in] dts ts file first pts/dts(ms)
  15. /// @param[in] duration file duration(ms)
  16. /// @return 0-ok, other-error
  17. typedef int (*hls_media_handler)(void* param, const void* data, size_t bytes, int64_t pts, int64_t dts, int64_t duration);
  18. /// param[in] duration ts segment duration(millisecond), 0-create segment per video key frame
  19. hls_media_t* hls_media_create(int64_t duration, hls_media_handler handler, void* param);
  20. void hls_media_destroy(hls_media_t* hls);
  21. /// @param[in] avtype audio/video type (mpeg-ps.h STREAM_VIDEO_XXX/STREAM_AUDIO_XXX)
  22. /// @param[in] data h264/h265 nalu with startcode(0x00000001), aac with adts
  23. /// @param[in] bytes data length in byte, NULL-force new segment
  24. /// @param[in] pts present timestamp in millisecond
  25. /// @param[in] dts decode timestamp in millisecond
  26. /// @param[in] flags HLS_FLAGS_XXX, such as HLS_FLAGS_KEYFRAME
  27. /// @return 0-ok, other-error
  28. int hls_media_input(hls_media_t* hls, int avtype, const void* data, size_t bytes, int64_t pts, int64_t dts, int flags);
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif /* !_hls_media_h_*/