41 lines
1.7 KiB
C
41 lines
1.7 KiB
C
#ifndef _mov_writer_h_
|
|
#define _mov_writer_h_
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include "mov-buffer.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct mov_writer_t mov_writer_t;
|
|
|
|
/// @param[in] flags mov flags, such as: MOV_FLAG_FASTSTART, see more @mov-format.h
|
|
mov_writer_t* mov_writer_create(const struct mov_buffer_t* buffer, void* param, int flags);
|
|
void mov_writer_destroy(mov_writer_t* mov);
|
|
|
|
/// @param[in] object MPEG-4 systems ObjectTypeIndication such as: MOV_OBJECT_H264, see more @mov-format.h
|
|
/// @param[in] extra_data AudioSpecificConfig/AVCDecoderConfigurationRecord/HEVCDecoderConfigurationRecord
|
|
/// @return >=0-track, <0-error
|
|
int mov_writer_add_audio(mov_writer_t* mov, uint8_t object, int channel_count, int bits_per_sample, int sample_rate, const void* extra_data, size_t extra_data_size);
|
|
int mov_writer_add_video(mov_writer_t* mov, uint8_t object, int width, int height, const void* extra_data, size_t extra_data_size);
|
|
int mov_writer_add_subtitle(mov_writer_t* mov, uint8_t object, const void* extra_data, size_t extra_data_size);
|
|
|
|
/// Write audio/video stream
|
|
/// raw AAC data, don't include ADTS/AudioSpecificConfig
|
|
/// H.264/H.265 MP4 format, replace start code(0x00000001) with NALU size
|
|
/// @param[in] track return by mov_writer_add_audio/mov_writer_add_video
|
|
/// @param[in] data audio/video frame
|
|
/// @param[in] bytes buffer size
|
|
/// @param[in] pts timestamp in millisecond
|
|
/// @param[in] dts timestamp in millisecond
|
|
/// @param[in] flags MOV_AV_FLAG_XXX, such as: MOV_AV_FLAG_KEYFREAME, see more @mov-format.h
|
|
/// @return 0-ok, other-error
|
|
int mov_writer_write(mov_writer_t* mov, int track, const void* data, size_t bytes, int64_t pts, int64_t dts, int flags);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !_mov_writer_h_ */
|