| 444 | } |
| 445 | |
| 446 | int FFmpegVersionHandler::dictSet(AVDictionaryWrapper &dict, |
| 447 | const char * key, |
| 448 | const char * value, |
| 449 | int flags) |
| 450 | { |
| 451 | AVDictionary *d = dict.getDictionary(); |
| 452 | int ret = this->lib.avutil.av_dict_set(&d, key, value, flags); |
| 453 | dict.setDictionary(d); |
| 454 | return ret; |
| 455 | } |
| 456 | |
| 457 | StringPairVec |
| 458 | FFmpegVersionHandler::getDictionaryEntries(AVDictionaryWrapper d, QString key, int flags) |
no test coverage detected