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"
|
|
#define | MKTAG16(a, b) MKTAG(a,b,0,0) |
| |
| #define | RTP_QT_HANDLER(m, n, s, t) |
| |
|
|
| 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) |
| |
§ RTP_QT_HANDLER
| #define RTP_QT_HANDLER |
( |
|
m, |
|
|
|
n, |
|
|
|
s, |
|
|
|
t |
|
) |
| |
Value: .enc_name = s, \
.codec_type = t, \
.codec_id = AV_CODEC_ID_NONE, \
.close = qt_rtp_close, \
.parse_packet = qt_rtp_parse_packet, \
}
RTP/JPEG specific private data.
Definition: rdt.c:83