Commit fdf97225 authored by Laurent Aimar's avatar Laurent Aimar

Fixed block_Realloc.

parent fcf032cb
......@@ -78,6 +78,7 @@ static void BlockRelease( block_t *p_block )
static void BlockMetaCopy( block_t *restrict out, const block_t *in )
{
out->p_next = in->p_next;
out->i_dts = in->i_dts;
out->i_pts = in->i_pts;
out->i_flags = in->i_flags;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment