Searched defs:stream_id (Results 1 - 25 of 32) sorted by relevance

12

/external/libopus/src/
H A Dopus_multistream.c57 int get_left_channel(const ChannelLayout *layout, int stream_id, int prev) argument
63 if (layout->mapping[i]==stream_id*2)
69 int get_right_channel(const ChannelLayout *layout, int stream_id, int prev) argument
75 if (layout->mapping[i]==stream_id*2+1)
81 int get_mono_channel(const ChannelLayout *layout, int stream_id, int prev) argument
87 if (layout->mapping[i]==stream_id+layout->nb_coupled_streams)
H A Dopus_multistream_decoder.c481 opus_int32 stream_id; local
483 stream_id = va_arg(ap, opus_int32);
484 if (stream_id<0 || stream_id >= st->layout.nb_streams)
491 for (s=0;s<stream_id;s++)
H A Dopus_multistream_encoder.c1100 opus_int32 stream_id; local
1102 stream_id = va_arg(ap, opus_int32);
1103 if (stream_id<0 || stream_id >= st->layout.nb_streams)
1110 for (s=0;s<stream_id;s++)
/external/libmicrohttpd/src/microspdy/
H A Dstream.c34 uint32_t stream_id; local
51 memcpy(&stream_id, session->read_buffer + session->read_buffer_beginning, 4);
52 stream_id = NTOH31(stream_id);
54 if(stream_id <= session->last_in_stream_id || 0==(stream_id % 2))
73 session->last_in_stream_id = stream_id;
99 stream->stream_id = stream_id;
159 SPDYF_stream_find(uint32_t stream_id, struc argument
[all...]
H A Dsession.c82 session->current_stream_id = session->streams_head->stream_id;
263 uint32_t stream_id; local
289 memcpy(&stream_id, session->read_buffer + session->read_buffer_beginning, 4);
290 stream_id = NTOH31(stream_id);
304 if(stream_id == stream->stream_id)
313 //SPDYF_DEBUG("Received RST_STREAM; status=%i; id=%i",status,stream_id);
365 stream = SPDYF_stream_find(frame->stream_id, session);
413 //SPDYF_DEBUG("data received: id %i", frame->stream_id);
1672 uint32_t stream_id; local
[all...]
H A Dstructures.h394 uint32_t stream_id : 31; member in struct:SPDYF_Data_Frame
549 uint32_t stream_id; member in struct:SPDYF_Stream
/external/webrtc/talk/app/webrtc/
H A Drtpsender.cc63 const std::string& stream_id,
67 stream_id_(stream_id),
203 const std::string& stream_id,
206 stream_id_(stream_id),
62 AudioRtpSender(AudioTrackInterface* track, const std::string& stream_id, AudioProviderInterface* provider, StatsCollector* stats) argument
202 VideoRtpSender(VideoTrackInterface* track, const std::string& stream_id, VideoProviderInterface* provider) argument
H A Dpeerconnectioninterface.h341 // |stream_id| is used to populate the msid attribute; if empty, one will
345 const std::string& stream_id) {
343 CreateSender( const std::string& kind, const std::string& stream_id) argument
/external/webrtc/webrtc/common_video/
H A Dincoming_video_stream.cc35 IncomingVideoStream::IncomingVideoStream(uint32_t stream_id, argument
37 : stream_id_(stream_id),
66 int32_t IncomingVideoStream::RenderFrame(const uint32_t stream_id, argument
/external/curl/lib/
H A Dhttp.h159 int32_t stream_id; /* stream we are interested in */ member in struct:HTTP
H A Dhttp2.c217 int32_t stream_id = frame->hd.stream_id; local
222 frame->hd.type, stream_id));
224 if(stream_id) {
227 data_s = Curl_hash_pick(&httpc->streamsh, &stream_id,
228 sizeof(stream_id));
233 stream_id);
247 stream_id, NGHTTP2_PROTOCOL_ERROR);
286 ncopy, stream_id, stream->mem));
306 DEBUGF(infof(conn->data, "Got SETTINGS for stream %u!\n", stream_id));
346 on_data_chunk_recv(nghttp2_session *session, uint8_t flags, int32_t stream_id, const uint8_t *data, size_t len, void *userp) argument
435 on_stream_close(nghttp2_session *session, int32_t stream_id, uint32_t error_code, void *userp) argument
520 int32_t stream_id = frame->hd.stream_id; local
585 data_source_read_callback(nghttp2_session *session, int32_t stream_id, uint8_t *buf, size_t length, uint32_t *data_flags, nghttp2_data_source *source, void *userp) argument
1010 int32_t stream_id; local
[all...]
/external/libmicrohttpd/src/examples/
H A Dmhd2spdy_spdy.c67 spdy_cb_data_source_read(spdylay_session *session, int32_t stream_id, uint8_t *buf, size_t length, int *eof, spdylay_data_source *source, void *user_data) argument
70 (void)stream_id;
158 PRINT_INFO2("ignoring RST_STREAM for stream_id %i %i %i %i", data[8], data[9], data[10], data[11]);
293 int32_t stream_id; local
298 stream_id = frame->syn_stream.stream_id;
299 proxy = spdylay_session_get_stream_user_data(session, stream_id);
300 proxy->stream_id = stream_id;
308 glob_opt.ignore_rst_stream = NULL==spdylay_session_get_stream_user_data(session, frame->rst_stream.stream_id);
329 int32_t stream_id; local
386 spdy_cb_on_stream_close(spdylay_session *session, int32_t stream_id, spdylay_status_code status_code, void *user_data) argument
419 spdy_cb_on_data_chunk_recv(spdylay_session *session, uint8_t flags, int32_t stream_id, const uint8_t *data, size_t len, void *user_data) argument
464 spdy_cb_on_data_recv(spdylay_session *session, uint8_t flags, int32_t stream_id, int32_t length, void *user_data) argument
[all...]
H A Dmhd2spdy_structures.h121 int32_t stream_id; member in struct:Proxy
/external/libvncserver/libvncclient/
H A Dtight.c100 int err, stream_id, compressedLen, bitsPixel; local
107 for (stream_id = 0; stream_id < 4; stream_id++) {
108 if ((comp_ctl & 1) && client->zlibStreamActive[stream_id]) {
109 if (inflateEnd (&client->zlibStream[stream_id]) != Z_OK &&
110 client->zlibStream[stream_id].msg != NULL)
111 rfbClientLog("inflateEnd: %s\n", client->zlibStream[stream_id].msg);
112 client->zlibStreamActive[stream_id] = FALSE;
214 stream_id
[all...]
/external/webrtc/webrtc/modules/video_render/
H A Dvideo_render_impl.cc511 uint32_t stream_id, int32_t delay_ms) {
521 _streamRenderMap.find(stream_id);
525 "%s(%u, %d): stream doesn't exist", __FUNCTION__, stream_id,
510 SetExpectedRenderDelay( uint32_t stream_id, int32_t delay_ms) argument
H A Dvideo_render_internal_impl.cc734 uint32_t stream_id, int32_t delay_ms) {
744 _streamRenderMap.find(stream_id);
748 "%s(%u, %d): stream doesn't exist", __FUNCTION__, stream_id,
733 SetExpectedRenderDelay( uint32_t stream_id, int32_t delay_ms) argument
/external/kernel-headers/original/uapi/linux/
H A Dusbdevice_fs.h107 unsigned int stream_id; /* Only used with bulk streams */ member in union:usbdevfs_urb::__anon8378
/external/libdrm/include/drm/
H A Dvmwgfx_drm.h497 * @stream_id: Stearm to control
513 uint32_t stream_id; member in struct:drm_vmw_control_stream_arg
571 * @stream_id: Device unique context ID.
578 uint32_t stream_id; member in struct:drm_vmw_stream_arg
/external/kernel-headers/original/uapi/linux/dvb/
H A Dvideo.h184 int stream_id; member in struct:video_spu
/external/libmicrohttpd/src/testspdy/
H A Dtest_new_connection.c128 int32_t stream_id; member in struct:Request
296 int stream_id = frame->syn_stream.stream_id; local
297 req = spdylay_session_get_stream_user_data(session, stream_id);
298 if(req && req->stream_id == -1) {
299 req->stream_id = stream_id;
300 spdylay_printf("[INFO] Stream ID = %d\n", stream_id);
313 int32_t stream_id; local
319 stream_id
341 int32_t stream_id; local
376 on_stream_close_callback(spdylay_session *session, int32_t stream_id, spdylay_status_code status_code, void *user_data) argument
400 on_data_chunk_recv_callback(spdylay_session *session, uint8_t flags, int32_t stream_id, const uint8_t *data, size_t len, void *user_data) argument
[all...]
H A Dtest_notls.c107 int32_t stream_id; member in struct:Request
293 int stream_id = frame->syn_stream.stream_id; local
294 req = spdylay_session_get_stream_user_data(session, stream_id);
295 if(req && req->stream_id == -1) {
296 req->stream_id = stream_id;
297 printf("[INFO] Stream ID = %d\n", stream_id);
310 int32_t stream_id; local
316 stream_id
338 int32_t stream_id; local
373 on_stream_close_callback(spdylay_session *session, int32_t stream_id, spdylay_status_code status_code, void *user_data) argument
398 on_data_chunk_recv_callback(spdylay_session *session, uint8_t flags, int32_t stream_id, const uint8_t *data, size_t len, void *user_data) argument
[all...]
H A Dtest_request_response.c110 int32_t stream_id; member in struct:Request
278 int stream_id = frame->syn_stream.stream_id; local
279 req = spdylay_session_get_stream_user_data(session, stream_id);
280 if(req && req->stream_id == -1) {
281 req->stream_id = stream_id;
282 printf("[INFO] Stream ID = %d\n", stream_id);
295 int32_t stream_id; local
301 stream_id
323 int32_t stream_id; local
358 on_stream_close_callback(spdylay_session *session, int32_t stream_id, spdylay_status_code status_code, void *user_data) argument
383 on_data_chunk_recv_callback(spdylay_session *session, uint8_t flags, int32_t stream_id, const uint8_t *data, size_t len, void *user_data) argument
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmwgfx_drm.h436 * @stream_id: Stearm to control
452 uint32_t stream_id; member in struct:drm_vmw_control_stream_arg
510 * @stream_id: Device unique context ID.
517 uint32_t stream_id; member in struct:drm_vmw_stream_arg
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DPeerConnection.java227 public RtpSender createSender(String kind, String stream_id) { argument
228 RtpSender new_sender = nativeCreateSender(kind, stream_id);
300 private native RtpSender nativeCreateSender(String kind, String stream_id); argument
/external/webrtc/talk/media/sctp/
H A Dsctpdataengine.cc903 const int stream_id = evt->strreset_stream_list[i]; local
906 StreamSet::iterator it = sent_reset_streams_.find(stream_id);
911 << "): local sid " << stream_id << " acknowledged."; local
914 } else if ((it = open_streams_.find(stream_id))
918 << "): closing sid " << stream_id; local
920 SignalStreamClosedRemotely(stream_id);
922 } else if ((it = queued_reset_streams_.find(stream_id))
927 << "): double-sided close for sid " << stream_id; local
937 << "): Unknown sid " << stream_id; local

Completed in 643 milliseconds

12