av_opt_copy

Copy options from src object into dest object.

Options that require memory allocation (e.g. string or binary) are malloc'ed in dest object. Original memory allocated for such options is freed unless both src and dest options points to the same memory.

@param dest Object to copy from @param src Object to copy into @return 0 on success, negative on error

extern (C) @nogc nothrow
int
av_opt_copy
(
void* dest
,
const(void)* src
)

Meta