diff options
author | Andreas Öman <andreas@olebyn.nu> | 2007-06-20 08:53:53 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-06-20 08:53:53 +0000 |
commit | 24456882f378c3154645b2b833b6f5af6e6f3ef7 (patch) | |
tree | 8d1fae40bfb6251a3e927a1fdbf7d54190d3b82e /libavcodec/h264.h | |
parent | 4fc3d23ffe3439377a51161d5dedefda10d222e4 (diff) | |
download | ffmpeg-24456882f378c3154645b2b833b6f5af6e6f3ef7.tar.gz |
Do not reuse the rbsp de-escape buffer if both
the intra and inter -nal units are escaped
patch by Andreas Öman: \andreas olebyn nu/
original thread:
[FFmpeg-devel] [PATCH] h264: rbsp de-escape and data partitioning..
date: 06/20/2007 09:32 AM
Originally committed as revision 9374 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 913f4fd19d..1669e8ece9 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -160,8 +160,8 @@ typedef struct H264Context{ MpegEncContext s; int nal_ref_idc; int nal_unit_type; - uint8_t *rbsp_buffer; - unsigned int rbsp_buffer_size; + uint8_t *rbsp_buffer[2]; + unsigned int rbsp_buffer_size[2]; /** * Used to parse AVC variant of h264 |