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

1234

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavformat/
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.c67 int max_packet_size, n; local
94 max_packet_size = url_fget_max_packet_size(s1->pb);
95 if (max_packet_size <= 12)
97 s->buf = av_malloc(max_packet_size);
101 s->max_payload_size = max_packet_size - 12;
216 int len, max_packet_size, n; local
218 max_packet_size = (s->max_payload_size / sample_size) * sample_size;
225 len = FFMIN(max_packet_size, size);
242 int len, count, max_packet_size; local
244 max_packet_size
294 int len, max_packet_size; local
[all...]
H A Drtpproto.c104 int max_packet_size)
111 if (max_packet_size >=0)
112 url_add_option(buf, buf_size, "pkt_size=%d", max_packet_size);
136 local_rtp_port, local_rtcp_port, max_packet_size; local
156 max_packet_size = -1;
176 max_packet_size = strtol(buf, NULL, 10);
181 hostname, rtp_port, local_rtp_port, ttl, max_packet_size);
188 hostname, rtcp_port, local_rtcp_port, ttl, max_packet_size);
197 h->max_packet_size = url_get_max_packet_size(s->rtp_hd);
101 build_udp_url(char *buf, int buf_size, const char *hostname, int port, int local_port, int ttl, int max_packet_size) argument
H A Daviobuf.c57 s->max_packet_size = 0;
298 uint8_t *dst= !s->max_packet_size && s->buf_end - s->buffer < s->buffer_size ? s->buf_ptr : s->buffer;
300 int max_buffer_size = s->max_packet_size ? s->max_packet_size : IO_BUFFER_SIZE;
552 int buffer_size, max_packet_size; local
554 max_packet_size = url_get_max_packet_size(h);
555 if (max_packet_size) {
556 buffer_size = max_packet_size; /* no need to bufferize more than one packet */
578 (*s)->max_packet_size = max_packet_size;
851 url_open_dyn_buf_internal(ByteIOContext **s, int max_packet_size) argument
886 url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size) argument
[all...]
H A Davio.c99 uc->max_packet_size = 0; /* default: stream file */
193 if (h->max_packet_size && size > h->max_packet_size)
256 return h->max_packet_size;
H A Dmovenc.h98 uint32_t max_packet_size; member in struct:MOVIndex
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavformat/
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.c67 int max_packet_size, n; local
94 max_packet_size = url_fget_max_packet_size(s1->pb);
95 if (max_packet_size <= 12)
97 s->buf = av_malloc(max_packet_size);
101 s->max_payload_size = max_packet_size - 12;
216 int len, max_packet_size, n; local
218 max_packet_size = (s->max_payload_size / sample_size) * sample_size;
225 len = FFMIN(max_packet_size, size);
242 int len, count, max_packet_size; local
244 max_packet_size
294 int len, max_packet_size; local
[all...]
H A Drtpproto.c104 int max_packet_size)
111 if (max_packet_size >=0)
112 url_add_option(buf, buf_size, "pkt_size=%d", max_packet_size);
136 local_rtp_port, local_rtcp_port, max_packet_size; local
156 max_packet_size = -1;
176 max_packet_size = strtol(buf, NULL, 10);
181 hostname, rtp_port, local_rtp_port, ttl, max_packet_size);
188 hostname, rtcp_port, local_rtcp_port, ttl, max_packet_size);
197 h->max_packet_size = url_get_max_packet_size(s->rtp_hd);
101 build_udp_url(char *buf, int buf_size, const char *hostname, int port, int local_port, int ttl, int max_packet_size) argument
H A Daviobuf.c57 s->max_packet_size = 0;
298 uint8_t *dst= !s->max_packet_size && s->buf_end - s->buffer < s->buffer_size ? s->buf_ptr : s->buffer;
300 int max_buffer_size = s->max_packet_size ? s->max_packet_size : IO_BUFFER_SIZE;
552 int buffer_size, max_packet_size; local
554 max_packet_size = url_get_max_packet_size(h);
555 if (max_packet_size) {
556 buffer_size = max_packet_size; /* no need to bufferize more than one packet */
578 (*s)->max_packet_size = max_packet_size;
851 url_open_dyn_buf_internal(ByteIOContext **s, int max_packet_size) argument
886 url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size) argument
[all...]
H A Davio.c99 uc->max_packet_size = 0; /* default: stream file */
193 if (h->max_packet_size && size > h->max_packet_size)
256 return h->max_packet_size;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavformat/
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.c67 int max_packet_size, n; local
94 max_packet_size = url_fget_max_packet_size(s1->pb);
95 if (max_packet_size <= 12)
97 s->buf = av_malloc(max_packet_size);
101 s->max_payload_size = max_packet_size - 12;
216 int len, max_packet_size, n; local
218 max_packet_size = (s->max_payload_size / sample_size) * sample_size;
225 len = FFMIN(max_packet_size, size);
242 int len, count, max_packet_size; local
244 max_packet_size
294 int len, max_packet_size; local
[all...]
H A Drtpproto.c104 int max_packet_size)
111 if (max_packet_size >=0)
112 url_add_option(buf, buf_size, "pkt_size=%d", max_packet_size);
136 local_rtp_port, local_rtcp_port, max_packet_size; local
156 max_packet_size = -1;
176 max_packet_size = strtol(buf, NULL, 10);
181 hostname, rtp_port, local_rtp_port, ttl, max_packet_size);
188 hostname, rtcp_port, local_rtcp_port, ttl, max_packet_size);
197 h->max_packet_size = url_get_max_packet_size(s->rtp_hd);
101 build_udp_url(char *buf, int buf_size, const char *hostname, int port, int local_port, int ttl, int max_packet_size) argument
H A Daviobuf.c57 s->max_packet_size = 0;
298 uint8_t *dst= !s->max_packet_size && s->buf_end - s->buffer < s->buffer_size ? s->buf_ptr : s->buffer;
300 int max_buffer_size = s->max_packet_size ? s->max_packet_size : IO_BUFFER_SIZE;
552 int buffer_size, max_packet_size; local
554 max_packet_size = url_get_max_packet_size(h);
555 if (max_packet_size) {
556 buffer_size = max_packet_size; /* no need to bufferize more than one packet */
578 (*s)->max_packet_size = max_packet_size;
851 url_open_dyn_buf_internal(ByteIOContext **s, int max_packet_size) argument
886 url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/staging/line6/
H A Dpcm.h160 int max_packet_size; member in struct:snd_line6_pcm
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/staging/line6/
H A Dpcm.h160 int max_packet_size; member in struct:snd_line6_pcm
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/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...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/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...]

Completed in 121 milliseconds

1234