| 166 | } DASHContext; |
| 167 | |
| 168 | static int ishttp(char *url) |
| 169 | { |
| 170 | const char *proto_name = avio_find_protocol_name(url); |
| 171 | return proto_name && av_strstart(proto_name, "http", NULL); |
| 172 | } |
| 173 | |
| 174 | static int aligned(int val) |
| 175 | { |
no test coverage detected