| 116 | |
| 117 | template <typename T> |
| 118 | void copy(T& dst, const T& src) { |
| 119 | void* struct_next = dst.struct_next; |
| 120 | dst = src; |
| 121 | dst.struct_next = struct_next; |
| 122 | } |
| 123 | |
| 124 | nvimgcodecStatus_t CodeStream::ensureParsed() { |
| 125 | if (parse_status_ == NVIMGCODEC_STATUS_NOT_INITIALIZED) { |
no outgoing calls