FFmpeg
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

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

const RTPDynamicProtocolHandler ff_h263_1998_dynamic_handler
 
const RTPDynamicProtocolHandler ff_h263_2000_dynamic_handler
 

Function Documentation

◆ ff_h263_handle_packet()

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 27 of file rtpdec_h263.c.

Referenced by h263_handle_packet().

Variable Documentation

◆ ff_h263_1998_dynamic_handler

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

Definition at line 92 of file rtpdec_h263.c.

◆ ff_h263_2000_dynamic_handler

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

Definition at line 100 of file rtpdec_h263.c.

AV_CODEC_ID_H263
@ AV_CODEC_ID_H263
Definition: codec_id.h:56
ff_h263_handle_packet
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: rtpdec_h263.c:27
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVSTREAM_PARSE_FULL
@ AVSTREAM_PARSE_FULL
full parsing and repack
Definition: avformat.h:593