62 lines
2.2 KiB
C
62 lines
2.2 KiB
C
/***************************************************************************************
|
|
*
|
|
* IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
|
|
*
|
|
* By downloading, copying, installing or using the software you agree to this license.
|
|
* If you do not agree to this license, do not download, install,
|
|
* copy or use the software.
|
|
*
|
|
* Copyright (C) 2014-2024, Happytimesoft Corporation, all rights reserved.
|
|
*
|
|
* Redistribution and use in binary forms, with or without modification, are permitted.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software distributed
|
|
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
|
|
* language governing permissions and limitations under the License.
|
|
*
|
|
****************************************************************************************/
|
|
|
|
#ifndef AVI_WRITE_H
|
|
#define AVI_WRITE_H
|
|
|
|
#include "sys_inc.h"
|
|
#include "avi.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void avi_free_idx(AVICTX * p_ctx);
|
|
int avi_write_idx(AVICTX * p_ctx);
|
|
void avi_set_dw(void * p, uint32 dw);
|
|
int avi_end(AVICTX * p_ctx);
|
|
AVICTX* avi_write_open(const char * filename);
|
|
int avi_write_video(AVICTX * p_ctx, uint8 * p_data, uint32 len, uint32 ts, int b_key);
|
|
int avi_write_nalu(AVICTX * p_ctx, uint8 * vps, int vps_len, uint8 * sps, int sps_len, uint8 * pps, int pps_len);
|
|
int avi_write_audio(AVICTX * p_ctx, uint8 * p_data, uint32 len, uint32 ts);
|
|
void avi_write_close(AVICTX * p_ctx);
|
|
void avi_set_video_info(AVICTX * p_ctx, int fps, int width, int height, const char fcc[4]);
|
|
void avi_set_video_extra_info(AVICTX * p_ctx, uint8 * extra, int extra_len);
|
|
void avi_set_audio_info(AVICTX * p_ctx, int chns, int rate, uint16 fmt);
|
|
void avi_set_audio_extra_info(AVICTX * p_ctx, uint8 * extra, int extra_len);
|
|
void avi_build_video_hdr(AVICTX * p_ctx);
|
|
void avi_build_audio_hdr(AVICTX * p_ctx);
|
|
int avi_write_header(AVICTX * p_ctx);
|
|
int avi_update_header(AVICTX * p_ctx);
|
|
int avi_calc_fps(AVICTX * p_ctx);
|
|
uint64 avi_get_file_length(AVICTX * p_ctx);
|
|
uint32 avi_get_media_time(AVICTX * p_ctx);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // AVI_WRITE_H
|
|
|
|
|
|
|