Searched refs:max_packet_size (Results 26 - 50 of 57) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/line6/
H A Dmidi.c58 unsigned char chunk[line6->max_packet_size];
64 req = min(midibuf_bytes_free(mb), line6->max_packet_size);
78 done = midibuf_read(mb, chunk, line6->max_packet_size);
H A Ddriver.c172 Send raw message in pieces of max_packet_size bytes.
186 int frag_size = min(line6->max_packet_size, size - i);
230 int bytes = min(msg->size - done, line6->max_packet_size);
873 line6->max_packet_size = le16_to_cpu(ep->desc.wMaxPacketSize);
876 line6->max_packet_size = LINE6_FALLBACK_MAXPACKETSIZE;
H A Dpcm.c249 line6pcm->max_packet_size = usb_maxpacket(line6->usbdev,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmovenc.h120 uint32_t max_packet_size; member in struct:MOVTrack
H A Durl.h47 int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */ member in struct:URLContext
H A Davio.c140 uc->max_packet_size = 0; /* default: stream file */
349 if (h->max_packet_size && size > h->max_packet_size)
H A Davio.h98 int max_packet_size; member in struct:AVIOContext
H A Dmovenchint.c344 if (packet_len > trk->max_packet_size)
345 trk->max_packet_size = packet_len;
H A Dsapenc.c231 if (sap->ann_size > sap->ann_fd->max_packet_size) {
H A Dudp.c613 h->max_packet_size = s->packet_size;
615 h->max_packet_size = UDP_MAX_PKT_SIZE;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Davio.c146 uc->max_packet_size = 0; /* default: stream file */
245 return h->max_packet_size;
360 if (h->max_packet_size && size > h->max_packet_size)
H A Davio.h103 int max_packet_size; member in struct:__anon2124
141 int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */ member in struct:URLContext
328 attribute_deprecated int url_open_dyn_packet_buf(AVIOContext **s, int max_packet_size);
366 * @deprecated use AVIOContext.max_packet_size directly.
H A Dmovenchint.c342 if (packet_len > trk->max_packet_size)
343 trk->max_packet_size = packet_len;
H A Dudp.c318 h->max_packet_size = 1472;
342 h->max_packet_size = strtol(buf, NULL, 10);
H A Dsapenc.c222 if (sap->ann_size > sap->ann_fd->max_packet_size) {
H A Drtmpproto.c887 s->max_packet_size = rt->stream->max_packet_size;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dpngenc.c241 int64_t max_packet_size; local
304 max_packet_size = avctx->height * (int64_t)(enc_row_size +
307 if (max_packet_size > INT_MAX)
309 if ((ret = ff_alloc_packet2(avctx, pkt, max_packet_size)) < 0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/usb/misc/
H A Dua101.c1101 unsigned max_packet_size = stream->max_packet_bytes; local
1110 while (size >= max_packet_size) {
1123 urb->urb.transfer_buffer_length = max_packet_size;
1129 urb->urb.iso_frame_desc[0].length = max_packet_size;
1131 size -= max_packet_size;
1132 addr += max_packet_size;
1133 dma += max_packet_size;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/serial/
H A Dssu100.c82 unsigned short max_packet_size; member in struct:ssu100_port_private
490 priv->max_packet_size = ep_desc->wMaxPacketSize;
493 dev_info(&udev->dev, "Setting MaxPacketSize %d\n", priv->max_packet_size);
700 for (i = 0; i < urb->actual_length; i += priv->max_packet_size) {
701 len = min_t(int, urb->actual_length - i, priv->max_packet_size);
H A Dftdi_sio.c88 unsigned short max_packet_size; member in struct:ftdi_private
1430 priv->max_packet_size = le16_to_cpu(ep_desc->wMaxPacketSize);
1432 dev_info(&udev->dev, "Setting MaxPacketSize %d\n", priv->max_packet_size);
1831 for (i = 0; i < size - 1; i += priv->max_packet_size) {
1832 len = min_t(int, size - i, priv->max_packet_size) - 1;
1924 for (i = 0; i < urb->actual_length; i += priv->max_packet_size) {
1925 len = min_t(int, urb->actual_length - i, priv->max_packet_size);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ieee1394/
H A Dohci1394.h171 unsigned int max_packet_size; member in struct:ti_ohci
H A Dohci1394.c499 ohci->max_packet_size =
568 ohci->max_packet_size,
585 if ((ohci->max_packet_size < 512) ||
586 (ohci->max_packet_size > 4096)) {
595 "attempting to set max_packet_size to 512 bytes");
598 ohci->max_packet_size = 512;
832 if (packet->data_size > ohci->max_packet_size) {
1077 int max_packet_size; local
1089 max_packet_size = iso->buf_size / iso->buf_packets;
1091 for (recv->buf_stride = 8; recv->buf_stride < max_packet_size;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffserver.c2450 int max_packet_size; local
2452 max_packet_size = RTSP_TCP_MAX_PACKET_SIZE;
2454 max_packet_size = c->rtp_handles[c->packet_stream_index]->max_packet_size;
2455 ret = ffio_open_dyn_packet_buf(&ctx->pb, max_packet_size);
3418 int max_packet_size; local
3469 max_packet_size = h->max_packet_size;
3474 max_packet_size = RTSP_TCP_MAX_PACKET_SIZE;
3486 if (ffio_open_dyn_packet_buf(&ctx->pb, max_packet_size) <
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Davserver.c2366 int max_packet_size; local
2368 max_packet_size = RTSP_TCP_MAX_PACKET_SIZE;
2370 max_packet_size = url_get_max_packet_size(c->rtp_handles[c->packet_stream_index]);
2371 ret = ffio_open_dyn_packet_buf(&ctx->pb, max_packet_size);
3359 int max_packet_size; local
3410 max_packet_size = url_get_max_packet_size(h);
3415 max_packet_size = RTSP_TCP_MAX_PACKET_SIZE;
3426 if (ffio_open_dyn_packet_buf(&ctx->pb, max_packet_size) < 0) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/
H A Dxhci.c702 int max_packet_size; local
709 max_packet_size = urb->dev->ep0.desc.wMaxPacketSize;
710 if (hw_max_packet_size != max_packet_size) {
713 max_packet_size);
724 ep_ctx->ep_info2 |= MAX_PACKET(max_packet_size);

Completed in 321 milliseconds

123