FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions
rtpdec_qt.c File Reference

Quicktime-style RTP support. More...

#include "avformat.h"
#include "internal.h"
#include "avio_internal.h"
#include "rtp.h"
#include "rtpdec.h"
#include "isom.h"
#include "libavcodec/get_bits.h"

Go to the source code of this file.

Data Structures

struct  PayloadContext
 RTP/JPEG specific private data. More...
 

Macros

#define MKTAG16(a, b)   MKTAG(a,b,0,0)
 
#define RTP_QT_HANDLER(m, n, s, t)
 

Functions

static int qt_rtp_parse_packet (AVFormatContext *s, PayloadContext *qt, AVStream *st, AVPacket *pkt, uint32_t *timestamp, const uint8_t *buf, int len, uint16_t seq, int flags)
 
static void qt_rtp_close (PayloadContext *qt)
 
 RTP_QT_HANDLER (qt, vid,"X-QT", AVMEDIA_TYPE_VIDEO)
 
 RTP_QT_HANDLER (qt, aud,"X-QT", AVMEDIA_TYPE_AUDIO)
 
 RTP_QT_HANDLER (quicktime, vid,"X-QUICKTIME", AVMEDIA_TYPE_VIDEO)
 
 RTP_QT_HANDLER (quicktime, aud,"X-QUICKTIME", AVMEDIA_TYPE_AUDIO)
 

Detailed Description

Quicktime-style RTP support.

Author
Ronald S. Bultje rbult.nosp@m.je@r.nosp@m.onald.nosp@m..bit.nosp@m.freak.nosp@m..net

Definition in file rtpdec_qt.c.

Macro Definition Documentation

#define MKTAG16 (   a,
  b 
)    MKTAG(a,b,0,0)

Referenced by qt_rtp_parse_packet().

#define RTP_QT_HANDLER (   m,
  n,
  s,
 
)
Value:
RTPDynamicProtocolHandler ff_ ## m ## _rtp_ ## n ## _handler = { \
.enc_name = s, \
.codec_type = t, \
.codec_id = AV_CODEC_ID_NONE, \
.priv_data_size = sizeof(PayloadContext), \
.close = qt_rtp_close, \
}
const char * s
Definition: avisynth_c.h:631
RTP/JPEG specific private data.
Definition: rdt.c:83
static int qt_rtp_parse_packet(AVFormatContext *s, PayloadContext *qt, AVStream *st, AVPacket *pkt, uint32_t *timestamp, const uint8_t *buf, int len, uint16_t seq, int flags)
Definition: rtpdec_qt.c:42
unsigned m
Definition: audioconvert.c:187
static void qt_rtp_close(PayloadContext *qt)
Definition: rtpdec_qt.c:238
int n
Definition: avisynth_c.h:547
static int parse_packet(AVFormatContext *s, AVPacket *pkt, int stream_index)
Parse a packet, add all split parts to parse_queue.
Definition: utils.c:1190

Definition at line 243 of file rtpdec_qt.c.

Function Documentation

static int qt_rtp_parse_packet ( AVFormatContext s,
PayloadContext qt,
AVStream st,
AVPacket pkt,
uint32_t *  timestamp,
const uint8_t buf,
int  len,
uint16_t  seq,
int  flags 
)
static

The RTP payload is described in: http://developer.apple.com/quicktime/icefloe/dispatch026.html

Definition at line 42 of file rtpdec_qt.c.

static void qt_rtp_close ( PayloadContext qt)
static

Definition at line 238 of file rtpdec_qt.c.

RTP_QT_HANDLER ( qt  ,
vid  ,
"X-QT"  ,
AVMEDIA_TYPE_VIDEO   
)
RTP_QT_HANDLER ( qt  ,
aud  ,
"X-QT"  ,
AVMEDIA_TYPE_AUDIO   
)
RTP_QT_HANDLER ( quicktime  ,
vid  ,
"X-QUICKTIME"  ,
AVMEDIA_TYPE_VIDEO   
)
RTP_QT_HANDLER ( quicktime  ,
aud  ,
"X-QUICKTIME"  ,
AVMEDIA_TYPE_AUDIO   
)