MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / find_rtp_session

Function find_rtp_session

ffserver.c:3023–3035  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3021}
3022
3023static HTTPContext *find_rtp_session(const char *session_id)
3024{
3025 HTTPContext *c;
3026
3027 if (session_id[0] == '\0')
3028 return NULL;
3029
3030 for(c = first_http_ctx; c != NULL; c = c->next) {
3031 if (!strcmp(c->session_id, session_id))
3032 return c;
3033 }
3034 return NULL;
3035}
3036
3037static RTSPTransportField *find_transport(RTSPMessageHeader *h, enum RTSPLowerTransport lower_transport)
3038{

Callers 2

rtsp_cmd_setupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected