Staging
v0.5.1
Revision 6487b499943b3a014abf4239dac0a0119793fcb3 authored by Filip Roséen on 09 March 2016, 11:50:02 UTC, committed by Jean-Baptiste Kempf on 09 March 2016, 11:57:59 UTC
The two overloads of EbmlParser::reconstruct has been added due to the
fact that there are _a lot_ of places in the code following the below:

    delete ep;
    ep = new EbmlParser (a, b, c, b);

The above will, unless the compiler feels cocky and optimizes it to what
is included in this patch. First free the memory used, and then allocate
new memory for a new EbmlParser.

Instead of doing what is effectively a reallocation, this patch
introduces EbmlParser::reconstruct which will reconstruct the object
in-place (without actually having to reallocate the underlying storage).

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
1 parent 1b41c8e
History
File Mode Size
.gitignore -rw-r--r-- 63 bytes
Makefile.am -rw-r--r-- 2.6 KB
cachegen.c -rw-r--r-- 2.9 KB
darwinvlc.m -rw-r--r-- 9.9 KB
override.c -rw-r--r-- 7.9 KB
rootwrap.c -rw-r--r-- 7.0 KB
vlc.c -rw-r--r-- 8.9 KB
vlc_win32_rc.rc.in -rw-r--r-- 995 bytes
winvlc.c -rw-r--r-- 13.6 KB

back to top