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

Function parse_sdp_line

libavformat/rtpdec_mpeg4.c:346–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

344}
345
346static int parse_sdp_line(AVFormatContext *s, int st_index,
347 PayloadContext *data, const char *line)
348{
349 const char *p;
350
351 if (st_index < 0)
352 return 0;
353
354 if (av_strstart(line, "fmtp:", &p))
355 return ff_parse_fmtp(s, s->streams[st_index], data, p, parse_fmtp);
356
357 return 0;
358}
359
360const RTPDynamicProtocolHandler ff_mp4v_es_dynamic_handler = {
361 .enc_name = "MP4V-ES",

Callers

nothing calls this directly

Calls 2

av_strstartFunction · 0.85
ff_parse_fmtpFunction · 0.85

Tested by

no test coverage detected