Searched refs:payload_type (Results 1 - 17 of 17) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drtp.h44 * @param payload_type The payload type (the 'PT' field in the RTP header)
48 int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type);
54 * @param payload_type The payload type (the 'PT' field in the RTP header)
59 const char *ff_rtp_enc_name(int payload_type);
H A Drtp.c74 int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type) argument
79 if (AVRtpPayloadTypes[i].pt == payload_type) {
100 int64_t payload_type; local
101 if (av_opt_get_int(fmt->priv_data, "payload_type", 0, &payload_type) >= 0 &&
102 payload_type >= 0)
103 return (int)payload_type;
121 const char *ff_rtp_enc_name(int payload_type) argument
126 if (AVRtpPayloadTypes[i].pt == payload_type) {
H A Dsdp.c387 static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type, AVFormatContext *fmt) argument
398 payload_type,
399 payload_type, config ? config : "");
409 payload_type,
410 payload_type, c->width, c->height);
418 payload_type,
419 payload_type, config ? config : "");
429 payload_type, c->sample_rate, c->channels,
430 payload_type, latm_context2profilelevel(c), config);
448 payload_type,
558 int payload_type; local
[all...]
H A Drtpenc.h31 int payload_type; member in struct:RTPMuxContext
H A Drtpdec.c367 RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type, int queue_size) argument
374 s->payload_type = payload_type;
381 if (!strcmp(ff_rtp_enc_name(payload_type), "MP2T")) {
460 int payload_type, seq, ret, flags = 0; local
467 payload_type = buf[1] & 0x7f;
477 if (s->payload_type != payload_type)
485 payload_type, seq, ((s->seq + 1) & 0xffff));
751 if (!strcmp(ff_rtp_enc_name(s->payload_type), "MP2
[all...]
H A Drtpdec.h41 RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type, int queue_size);
149 int payload_type; member in struct:RTPDemuxContext
H A Drtpenc.c35 { "payload_type", "Specify RTP payload type", offsetof(RTPMuxContext, payload_type), AV_OPT_TYPE_INT, {.dbl = -1 }, -1, 127, AV_OPT_FLAG_ENCODING_PARAM },
97 if (s->payload_type < 0)
98 s->payload_type = ff_rtp_get_payload_type(s1, st->codec);
209 av_dlog(s1, "RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp);
236 avio_w8(s1->pb, (s->payload_type & 0x7f) | ((m & 0x01) << 7));
H A Drtsp.c185 int payload_type, const char *p)
199 if (payload_type >= RTP_PT_PRIVATE) {
293 int payload_type, i; local
430 payload_type = atoi(buf1);
433 sdp_parse_rtpmap(s, st, rtsp_st, payload_type, p);
439 payload_type = atoi(buf1);
442 if (rtsp_st->sdp_payload_type == payload_type &&
1935 int payload_type; local
1967 payload_type = recvbuf[1] & 0x7f;
1975 if (ff_rtp_get_codec_info(&codec, payload_type)) {
183 sdp_parse_rtpmap(AVFormatContext *s, AVStream *st, RTSPStream *rtsp_st, int payload_type, const char *p) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dhevc_sei.c146 int payload_type = 0; local
153 payload_type += byte;
161 if (payload_type == 256 /*&& s->decode_checksum_sei*/) {
163 } else if (payload_type == 45) {
165 } else if (payload_type == 47) {
167 } else if (payload_type == 1){
169 av_log(s->avctx, AV_LOG_DEBUG, "Skipped PREFIX SEI %d\n", payload_type);
172 } else if (payload_type == 129){
174 av_log(s->avctx, AV_LOG_DEBUG, "Skipped PREFIX SEI %d\n", payload_type);
176 av_log(s->avctx, AV_LOG_DEBUG, "Skipped PREFIX SEI %d\n", payload_type);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dsdp.c398 static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type, AVFormatContext *fmt) argument
413 payload_type,
414 payload_type, mode, config ? config : "");
428 payload_type,
429 payload_type, c->width, c->height);
437 payload_type,
438 payload_type, config ? config : "");
448 payload_type, c->sample_rate, c->channels,
449 payload_type, latm_context2profilelevel(c), config);
467 payload_type,
613 int payload_type; local
[all...]
H A Drtp.c71 int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type) argument
76 if (rtp_payload_types[i].pt == payload_type) {
98 int64_t payload_type; local
99 if (av_opt_get_int(fmt->priv_data, "payload_type", 0, &payload_type) >= 0 &&
100 payload_type >= 0)
101 return (int)payload_type;
132 const char *ff_rtp_enc_name(int payload_type) argument
137 if (rtp_payload_types[i].pt == payload_type)
H A Drtp.h32 * The format context private option payload_type overrides both.
50 * @param payload_type The payload type (the 'PT' field in the RTP header)
54 int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type);
60 * @param payload_type The payload type (the 'PT' field in the RTP header)
65 const char *ff_rtp_enc_name(int payload_type);
H A Drtpdec.h44 int payload_type, int queue_size);
150 int payload_type; member in struct:RTPDemuxContext
H A Drtpenc.h31 int payload_type; member in struct:RTPMuxContext
H A Drtpenc.c33 { "payload_type", "Specify RTP payload type", offsetof(RTPMuxContext, payload_type), AV_OPT_TYPE_INT, {.i64 = -1 }, -1, 127, AV_OPT_FLAG_ENCODING_PARAM },
104 if (s->payload_type < 0) {
109 s->payload_type = st->id;
112 st->id = s->payload_type;
275 av_dlog(s1, "RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp);
324 avio_w8(s1->pb, (s->payload_type & 0x7f) | ((m & 0x01) << 7));
H A Drtpdec.c496 int payload_type, int queue_size)
503 s->payload_type = payload_type;
584 int payload_type, seq, flags = 0; local
592 payload_type = buf[1] & 0x7f;
602 if (s->payload_type != payload_type)
610 payload_type, seq, ((s->seq + 1) & 0xffff));
495 ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, int payload_type, int queue_size) argument
H A Drtsp.c200 int payload_type, const char *p)
213 if (payload_type < RTP_PT_PRIVATE) {
320 int payload_type, const char *line)
326 if (rtsp_st->sdp_payload_type == payload_type &&
342 int payload_type; local
510 payload_type = atoi(buf1);
514 sdp_parse_rtpmap(s, st, rtsp_st, payload_type, p);
518 parse_fmtp(s, rt, payload_type, s1->delayed_fmtp);
524 payload_type = atoi(buf1);
526 parse_fmtp(s, rt, payload_type, bu
198 sdp_parse_rtpmap(AVFormatContext *s, AVStream *st, RTSPStream *rtsp_st, int payload_type, const char *p) argument
319 parse_fmtp(AVFormatContext *s, RTSPState *rt, int payload_type, const char *line) argument
2282 int payload_type; local
[all...]

Completed in 187 milliseconds