Searched refs:max_packet_size (Results 1 - 25 of 57) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drtpenc_vp8.c29 int len, max_packet_size; local
33 max_packet_size = s->max_payload_size - 1; // minus one for header byte
37 len = FFMIN(size, max_packet_size);
H A Drtpenc_aac.c28 int len, max_packet_size; local
38 max_packet_size = s->max_payload_size - max_au_headers_size;
62 if (size <= max_packet_size) {
71 max_packet_size = s->max_payload_size - 4;
76 len = FFMIN(size, max_packet_size);
H A Drtpenc_mpv.c32 int len, h, max_packet_size; local
37 max_packet_size = s->max_payload_size;
47 len = max_packet_size - 4;
80 if ((r1 - buf1 > 4) && (r - r1 < max_packet_size)) {
H A Drtpenc_h263.c46 int len, max_packet_size; local
49 max_packet_size = s->max_payload_size;
62 len = FFMIN(max_packet_size - 2, size);
H A Drtpproto.c107 int max_packet_size, int connect)
114 if (max_packet_size >=0)
115 url_add_option(buf, buf_size, "pkt_size=%d", max_packet_size);
142 local_rtp_port, local_rtcp_port, max_packet_size; local
155 max_packet_size = -1;
176 max_packet_size = strtol(buf, NULL, 10);
184 hostname, rtp_port, local_rtp_port, ttl, max_packet_size,
192 hostname, rtcp_port, local_rtcp_port, ttl, max_packet_size,
202 h->max_packet_size = s->rtp_hd->max_packet_size;
104 build_udp_url(char *buf, int buf_size, const char *hostname, int port, int local_port, int ttl, int max_packet_size, int connect) argument
[all...]
H A Drtpenc.c85 int max_packet_size, n; local
110 max_packet_size = s1->pb->max_packet_size;
111 if (max_packet_size <= 12)
113 s->buf = av_malloc(max_packet_size);
117 s->max_payload_size = max_packet_size - 12;
255 int len, max_packet_size, n; local
259 max_packet_size = (s->max_payload_size / aligned_samples_size) * aligned_samples_size;
266 len = FFMIN(max_packet_size, size);
283 int len, count, max_packet_size; local
335 int len, max_packet_size; local
[all...]
H A Daviobuf.c96 s->max_packet_size = 0;
455 int url_open_dyn_packet_buf(AVIOContext **s, int max_packet_size) argument
457 return ffio_open_dyn_packet_buf(s, max_packet_size);
564 uint8_t *dst= !s->max_packet_size && s->buf_end - s->buffer < s->buffer_size ? s->buf_end : s->buffer;
566 int max_buffer_size = s->max_packet_size ? s->max_packet_size : IO_BUFFER_SIZE;
864 int buffer_size, max_packet_size; local
866 max_packet_size = h->max_packet_size;
867 if (max_packet_size) {
1162 url_open_dyn_buf_internal(AVIOContext **s, int max_packet_size) argument
1189 ffio_open_dyn_packet_buf(AVIOContext **s, int max_packet_size) argument
[all...]
H A Davio_internal.h83 * size of 'max_packet_size'. The stream is stored in a memory buffer
87 * @param max_packet_size maximum packet size (must be > 0)
90 int ffio_open_dyn_packet_buf(AVIOContext **s, int max_packet_size);
H A Dmovenc.h98 uint32_t max_packet_size; member in struct:MOVIndex
H A Durl.h48 int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */ member in struct:URLContext
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drtpenc_vp8.c29 int len, max_packet_size, header_size; local
41 max_packet_size = s->max_payload_size - header_size;
44 len = FFMIN(size, max_packet_size);
H A Drtpenc_aac.c28 int len, max_packet_size; local
38 max_packet_size = s->max_payload_size - max_au_headers_size;
62 if (size <= max_packet_size) {
71 max_packet_size = s->max_payload_size - 4;
76 len = FFMIN(size, max_packet_size);
H A Drtpenc_mpv.c32 int len, h, max_packet_size; local
37 max_packet_size = s->max_payload_size;
47 len = max_packet_size - 4;
80 if ((r1 - buf1 > 4) && (r - r1 < max_packet_size)) {
H A Drtpenc_h263.c46 int len, max_packet_size; local
49 max_packet_size = s->max_payload_size;
62 len = FFMIN(max_packet_size - 2, size);
H A Drtpenc.c138 if (s1->pb->max_packet_size)
140 s1->pb->max_packet_size);
142 s1->packet_size = s1->pb->max_packet_size;
343 int len, max_packet_size, n; local
347 max_packet_size = (s->max_payload_size / aligned_samples_size) * aligned_samples_size;
354 len = FFMIN(max_packet_size, size);
372 int len, count, max_packet_size; local
374 max_packet_size = s->max_payload_size;
378 if ((len + size) > max_packet_size) {
389 if (size > max_packet_size) {
424 int len, max_packet_size; local
[all...]
H A Daviobuf.c97 s->max_packet_size = 0;
416 int max_buffer_size = s->max_packet_size ?
417 s->max_packet_size : IO_BUFFER_SIZE;
740 int buffer_size, max_packet_size; local
742 max_packet_size = h->max_packet_size;
743 if (max_packet_size) {
744 buffer_size = max_packet_size; /* no need to bufferize more than one packet */
760 (*s)->max_packet_size = max_packet_size;
1027 url_open_dyn_buf_internal(AVIOContext **s, int max_packet_size) argument
1054 ffio_open_dyn_packet_buf(AVIOContext **s, int max_packet_size) argument
[all...]
H A Drtpproto.c194 int max_packet_size, int connect,
203 if (max_packet_size >=0)
204 url_add_option(buf, buf_size, "pkt_size=%d", max_packet_size);
279 local_rtp_port, local_rtcp_port, max_packet_size; local
293 max_packet_size = -1;
314 max_packet_size = strtol(buf, NULL, 10);
334 hostname, rtp_port, local_rtp_port, ttl, max_packet_size,
346 hostname, rtcp_port, local_rtcp_port, ttl, max_packet_size,
355 hostname, rtcp_port, local_rtcp_port, ttl, max_packet_size,
367 h->max_packet_size
191 build_udp_url(char *buf, int buf_size, const char *hostname, int port, int local_port, int ttl, int max_packet_size, int connect, const char *include_sources, const char *exclude_sources) argument
[all...]
H A Davio_internal.h113 * size of 'max_packet_size'. The stream is stored in a memory buffer
117 * @param max_packet_size maximum packet size (must be > 0)
120 int ffio_open_dyn_packet_buf(AVIOContext **s, int max_packet_size);
H A Dsrtpproto.c86 h->max_packet_size = FFMIN(s->rtp_hd->max_packet_size,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/line6/
H A Dpcm.h160 int max_packet_size; member in struct:snd_line6_pcm
H A Ddriver.h121 int max_packet_size; member in struct:usb_line6
H A Dcapture.c53 fin->length = line6pcm->max_packet_size;
54 urb_size += line6pcm->max_packet_size;
59 index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ecryptfs/
H A Dkeystore.c475 size_t max_packet_size; member in struct:ecryptfs_write_tag_70_packet_silly_stack
553 s->max_packet_size = (1 /* Tag 70 identifier */
559 (*packet_size) = s->max_packet_size;
562 if (s->max_packet_size > (*remaining_bytes)) {
564 "[%zd] available\n", __func__, s->max_packet_size,
762 size_t max_packet_size; member in struct:ecryptfs_parse_tag_70_packet_silly_stack
789 * @max_packet_size: The maximum legal size of the packet to be parsed
798 char *data, size_t max_packet_size)
814 if (max_packet_size < (1 + 1 + ECRYPTFS_SIG_SIZE + 1 + 1)) {
815 printk(KERN_WARNING "%s: max_packet_size i
795 ecryptfs_parse_tag_70_packet(char **filename, size_t *filename_size, size_t *packet_size, struct ecryptfs_mount_crypt_stat *mount_crypt_stat, char *data, size_t max_packet_size) argument
1120 parse_tag_1_packet(struct ecryptfs_crypt_stat *crypt_stat, unsigned char *data, struct list_head *auth_tok_list, struct ecryptfs_auth_tok **new_auth_tok, size_t *packet_size, size_t max_packet_size) argument
1252 parse_tag_3_packet(struct ecryptfs_crypt_stat *crypt_stat, unsigned char *data, struct list_head *auth_tok_list, struct ecryptfs_auth_tok **new_auth_tok, size_t *packet_size, size_t max_packet_size) argument
1426 parse_tag_11_packet(unsigned char *data, unsigned char *contents, size_t max_contents_bytes, size_t *tag_11_contents_size, size_t *packet_size, size_t max_packet_size) argument
1698 size_t max_packet_size = ((PAGE_CACHE_SIZE - 8) - i); local
1934 size_t max_packet_size; local
2019 size_t max_packet_size; local
2091 size_t max_packet_size; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavformat/
H A Davio.h51 int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */ member in struct:URLContext
191 int max_packet_size; member in struct:__anon3896
364 * size of 'max_packet_size'. The stream is stored in a memory buffer
368 * @param max_packet_size maximum packet size (must be > 0)
371 int url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/tlg2300/
H A Dpd-main.c220 size_t max_packet_size; local
236 max_packet_size = udev->ep_out[0x1]->desc.wMaxPacketSize;
237 log("\t\t download size : %d", (int)max_packet_size);
239 for (offset = 0; offset < fwlength; offset += max_packet_size) {
244 min(max_packet_size, fwlength - offset),

Completed in 216 milliseconds

123