Commit d30de10d authored by Damien Fouilleul's avatar Damien Fouilleul

live555: hmmm, that BITMAPINFOHEADER is only useful on mplayer, not vlc

parent c6c38ccd
......@@ -29,7 +29,6 @@
#include <stdlib.h> /* malloc(), free() */
#include <string.h>
#include <vlc_codecs.h>
#include <vlc_demux.h>
#include <vlc_interface.h>
#include <vlc_network.h>
......@@ -1352,7 +1351,7 @@ static void StreamRead( void *p_private, unsigned int i_size,
if( atomLength == 0 || atomLength > endpos-pos) break;
if( memcmp(pos+4, "avcC", 4) == 0 &&
atomLength > 8 &&
atomLength <= INT_MAX-sizeof(BITMAPINFOHEADER))
atomLength <= INT_MAX )
{
tk->fmt.i_extra = atomLength-8;
tk->fmt.p_extra = malloc( tk->fmt.i_extra );
......
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