#include "avformat.h"
#include "rtpdec_formats.h"
#include "libavutil/intreadwrite.h"
#include "libavcodec/get_bits.h"
Go to the source code of this file.
Data Structures | |
struct | PayloadContext |
Structure listing useful vars to parse RTP packet payload. More... | |
Functions | |
static PayloadContext * | h263_new_context (void) |
static void | h263_free_context (PayloadContext *data) |
static int | h263_handle_packet (AVFormatContext *ctx, PayloadContext *data, AVStream *st, AVPacket *pkt, uint32_t *timestamp, const uint8_t *buf, int len, int flags) |
Variables | |
RTPDynamicProtocolHandler | ff_h263_rfc2190_dynamic_handler |
static void h263_free_context | ( | PayloadContext * | data | ) | [static] |
Definition at line 46 of file rtpdec_h263_rfc2190.c.
static int h263_handle_packet | ( | AVFormatContext * | ctx, | |
PayloadContext * | data, | |||
AVStream * | st, | |||
AVPacket * | pkt, | |||
uint32_t * | timestamp, | |||
const uint8_t * | buf, | |||
int | len, | |||
int | flags | |||
) | [static] |
Definition at line 58 of file rtpdec_h263_rfc2190.c.
static PayloadContext* h263_new_context | ( | void | ) | [static] |
Definition at line 41 of file rtpdec_h263_rfc2190.c.
Initial value:
{ .codec_type = AVMEDIA_TYPE_VIDEO, .codec_id = CODEC_ID_H263, .parse_packet = h263_handle_packet, .alloc = h263_new_context, .free = h263_free_context, .static_payload_id = 34, }
Definition at line 199 of file rtpdec_h263_rfc2190.c.
Referenced by av_register_rtp_dynamic_payload_handlers().