63 lines
1.9 KiB
C
63 lines
1.9 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 MJPEG_RTP_RX_H
|
||
|
|
#define MJPEG_RTP_RX_H
|
||
|
|
|
||
|
|
#include "rtp_rx.h"
|
||
|
|
|
||
|
|
|
||
|
|
typedef struct mjpeg_rtp_rx_info
|
||
|
|
{
|
||
|
|
RTPRXI rtprxi;
|
||
|
|
|
||
|
|
uint8 * p_buf_org; // Allocated buffer
|
||
|
|
uint8 * p_buf; // = p_buf_org + 32
|
||
|
|
uint32 buf_len; // Buffer length -32
|
||
|
|
uint32 d_offset; // Data offset
|
||
|
|
|
||
|
|
VRTPRXCBF pkt_func; // callback function
|
||
|
|
void * user_data; // user data
|
||
|
|
|
||
|
|
int width; // video width
|
||
|
|
int height; // video height
|
||
|
|
} MJPEGRXI;
|
||
|
|
|
||
|
|
|
||
|
|
/***************************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
BOOL mjpeg_data_rx(MJPEGRXI * p_rxi, uint8 * p_data, int len);
|
||
|
|
BOOL mjpeg_rtp_rx(MJPEGRXI * p_rxi, uint8 * p_data, int len);
|
||
|
|
BOOL mjpeg_rxi_init(MJPEGRXI * p_rxi, VRTPRXCBF cbf, void * p_userdata);
|
||
|
|
void mjpeg_rxi_deinit(MJPEGRXI * p_rxi);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
#endif // MJPEG_RTP_RX_H
|
||
|
|
|
||
|
|
|
||
|
|
|