Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

52 wiersze
2.1KB

  1. #ifndef _hls_fmp4_h_
  2. #define _hls_fmp4_h_
  3. #include <stdint.h>
  4. #include <stddef.h>
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. typedef struct hls_fmp4_t hls_fmp4_t;
  9. /// @param[in] param user-defined parameter(hls_media_create)
  10. /// @param[in] data ts file content
  11. /// @param[in] bytes ts file length in byte
  12. /// @param[in] pts ts file first pts/dts(ms)
  13. /// @param[in] dts ts file first pts/dts(ms)
  14. /// @param[in] duration file duration(ms)
  15. /// @return 0-ok, other-error
  16. typedef int (*hls_fmp4_handler)(void* param, const void* data, size_t bytes, int64_t pts, int64_t dts, int64_t duration);
  17. /// @param[in] duration ts segment duration(millisecond), 0-create segment per video key frame
  18. hls_fmp4_t* hls_fmp4_create(int64_t duration, hls_fmp4_handler handler, void* param);
  19. void hls_fmp4_destroy(hls_fmp4_t* hls);
  20. /// @param[in] object MPEG-4 systems ObjectTypeIndication such as: MOV_OBJECT_H264, see more @mov-format.h
  21. /// @param[in] extra_data AudioSpecificConfig/AVCDecoderConfigurationRecord/HEVCDecoderConfigurationRecord
  22. /// @return >=0-track, <0-error
  23. int hls_fmp4_add_audio(hls_fmp4_t* hls, uint8_t object, int channel_count, int bits_per_sample, int sample_rate, const void* extra_data, size_t extra_data_size);
  24. int hls_fmp4_add_video(hls_fmp4_t* hls, uint8_t object, int width, int height, const void* extra_data, size_t extra_data_size);
  25. /// @param[in] track hls_fmp4_add_audio/hls_fmp4_add_video return value
  26. /// @param[in] data h264/h265 mp4 format stream
  27. /// @param[in] pts present timestamp in millisecond
  28. /// @param[in] dts decode timestamp in millisecond
  29. /// @param[in] flags MOV_AV_FLAG_XXX, such as: MOV_AV_FLAG_KEYFREAME, see more @mov-format.h
  30. /// @return 0-ok, other-error
  31. int hls_fmp4_input(hls_fmp4_t* hls, int track, const void* data, size_t bytes, int64_t pts, int64_t dts, int flags);
  32. /// WARNING: hls_fmp4_input/hls_fmp4_init_segment not thread-safe
  33. /// @param[in] data init segment buffer
  34. /// @param[in] bytes data buffer size
  35. /// @return >0-bytes, <0-error
  36. int hls_fmp4_init_segment(hls_fmp4_t* hls, void* data, size_t bytes);
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif /* !_hls_fmp4_h_ */