FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
rtpdec_h263.c File Reference
#include "avformat.h"
#include "rtpdec_formats.h"
#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"

Go to the source code of this file.

Functions

static av_cold int h263_init (AVFormatContext *ctx, int st_index, PayloadContext *data)
 
int ff_h263_handle_packet (AVFormatContext *ctx, PayloadContext *data, AVStream *st, AVPacket *pkt, uint32_t *timestamp, const uint8_t *buf, int len, uint16_t seq, int flags)
 

Variables

RTPDynamicProtocolHandler ff_h263_1998_dynamic_handler
 
RTPDynamicProtocolHandler ff_h263_2000_dynamic_handler
 

Function Documentation

static av_cold int h263_init ( AVFormatContext ctx,
int  st_index,
PayloadContext data 
)
static

Definition at line 27 of file rtpdec_h263.c.

int ff_h263_handle_packet ( AVFormatContext ctx,
PayloadContext data,
AVStream st,
AVPacket pkt,
uint32_t *  timestamp,
const uint8_t buf,
int  len,
uint16_t  seq,
int  flags 
)

Definition at line 36 of file rtpdec_h263.c.

Referenced by h263_handle_packet().

Variable Documentation

RTPDynamicProtocolHandler ff_h263_1998_dynamic_handler
Initial value:
= {
.enc_name = "H263-1998",
.codec_type = AVMEDIA_TYPE_VIDEO,
.codec_id = AV_CODEC_ID_H263,
.init = h263_init,
.parse_packet = ff_h263_handle_packet,
}

Definition at line 101 of file rtpdec_h263.c.

Referenced by ff_register_rtp_dynamic_payload_handlers().

RTPDynamicProtocolHandler ff_h263_2000_dynamic_handler
Initial value:
= {
.enc_name = "H263-2000",
.codec_type = AVMEDIA_TYPE_VIDEO,
.codec_id = AV_CODEC_ID_H263,
.init = h263_init,
.parse_packet = ff_h263_handle_packet,
}

Definition at line 109 of file rtpdec_h263.c.

Referenced by ff_register_rtp_dynamic_payload_handlers().