| 344 | } |
| 345 | |
| 346 | static 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 | |
| 360 | const RTPDynamicProtocolHandler ff_mp4v_es_dynamic_handler = { |
| 361 | .enc_name = "MP4V-ES", |
nothing calls this directly
no test coverage detected