1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-02 01:09:59 +02:00

h264: disable checking reader, overreads are not possible

in ffmpegs h264 decoder.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-12-18 03:17:44 +01:00
parent 1bdc212a39
commit 38331d2036
4 changed files with 6 additions and 0 deletions

View File

@ -25,6 +25,8 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
#define UNCHECKED_BITSTREAM_READER 1
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "internal.h"

View File

@ -26,6 +26,7 @@
*/
#define CABAC 1
#define UNCHECKED_BITSTREAM_READER 1
#include "internal.h"
#include "dsputil.h"

View File

@ -26,6 +26,7 @@
*/
#define CABAC 0
#define UNCHECKED_BITSTREAM_READER 1
#include "internal.h"
#include "avcodec.h"

View File

@ -25,6 +25,8 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
#define UNCHECKED_BITSTREAM_READER 1
#include "parser.h"
#include "h264data.h"
#include "golomb.h"