| 115 | } |
| 116 | |
| 117 | static int parse_fmtp_config(AVCodecParameters *par, const char *value) |
| 118 | { |
| 119 | /* decode the hexa encoded parameter */ |
| 120 | int len = ff_hex_to_data(NULL, value), ret; |
| 121 | |
| 122 | if ((ret = ff_alloc_extradata(par, len)) < 0) |
| 123 | return ret; |
| 124 | ff_hex_to_data(par->extradata, value); |
| 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | static int rtp_parse_mp4_au(PayloadContext *data, const uint8_t *buf, int len) |
| 129 | { |
no test coverage detected