| 56 | } |
| 57 | |
| 58 | void Decoder::set_option(const char *id, GVariant *value) |
| 59 | { |
| 60 | assert(value); |
| 61 | if (_options_back[id]) { |
| 62 | g_variant_unref(_options_back[id]); |
| 63 | } |
| 64 | g_variant_ref(value); |
| 65 | _options_back[id] = value; |
| 66 | _setted = true; |
| 67 | } |
| 68 | |
| 69 | void Decoder::set_decode_region(uint64_t start, uint64_t end) |
| 70 | { |
no outgoing calls
no test coverage detected