H.264 / RTP Code (RFC3984) More...
#include "libavutil/base64.h"
#include "libavutil/avstring.h"
#include "libavcodec/get_bits.h"
#include "avformat.h"
#include "mpegts.h"
#include <unistd.h>
#include "network.h"
#include <assert.h>
#include "rtpdec.h"
#include "rtpdec_formats.h"
Go to the source code of this file.
Data Structures | |
struct | PayloadContext |
RTP/H264 specific private data. More... |
Macros | |
#define | MAGIC_COOKIE (0xdeadbeef) |
Cookie for the extradata; to verify we are what we think we are, and that we haven't been freed. | |
#define | DEAD_COOKIE (0xdeaddead) |
Cookie for the extradata; once it is freed. |
Functions | |
static int | sdp_parse_fmtp_config_h264 (AVStream *stream, PayloadContext *h264_data, char *attr, char *value) |
static int | h264_handle_packet (AVFormatContext *ctx, PayloadContext *data, AVStream *st, AVPacket *pkt, uint32_t *timestamp, const uint8_t *buf, int len, int flags) |
static PayloadContext * | h264_new_context (void) |
static void | h264_free_context (PayloadContext *data) |
static int | parse_h264_sdp_line (AVFormatContext *s, int st_index, PayloadContext *h264_data, const char *line) |
Variables | |
RTPDynamicProtocolHandler | ff_h264_dynamic_handler |
This is the structure for expanding on the dynamic rtp protocols (makes everything static. |
H.264 / RTP Code (RFC3984)
Definition in file rtpdec_h264.c.
#define DEAD_COOKIE (0xdeaddead) |
Cookie for the extradata; once it is freed.
Definition at line 69 of file rtpdec_h264.c.
Referenced by h264_free_context().
#define MAGIC_COOKIE (0xdeadbeef) |
Cookie for the extradata; to verify we are what we think we are, and that we haven't been freed.
Definition at line 68 of file rtpdec_h264.c.
Referenced by h264_free_context(), h264_handle_packet(), h264_new_context(), and parse_h264_sdp_line().
|
static |
Definition at line 335 of file rtpdec_h264.c.
|
static |
Definition at line 168 of file rtpdec_h264.c.
|
static |
Definition at line 322 of file rtpdec_h264.c.
|
static |
Definition at line 357 of file rtpdec_h264.c.
|
static |
Definition at line 72 of file rtpdec_h264.c.
Referenced by parse_h264_sdp_line().
RTPDynamicProtocolHandler ff_h264_dynamic_handler |
This is the structure for expanding on the dynamic rtp protocols (makes everything static.
yay!)
Definition at line 396 of file rtpdec_h264.c.
Referenced by av_register_rtp_dynamic_payload_handlers().