mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
error concealment needs the mbintra_table so it should allways be allocated
Originally committed as revision 861 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b77eec85b3
commit
7806197db2
@ -262,10 +262,6 @@ int MPV_common_init(MpegEncContext *s)
|
||||
|
||||
/* cbp values */
|
||||
CHECKED_ALLOCZ(s->coded_block, y_size);
|
||||
|
||||
/* which mb is a intra block */
|
||||
CHECKED_ALLOCZ(s->mbintra_table, s->mb_num);
|
||||
memset(s->mbintra_table, 1, s->mb_num);
|
||||
|
||||
/* divx501 bitstream reorder buffer */
|
||||
CHECKED_ALLOCZ(s->bitstream_buffer, BITSTREAM_BUFFER_SIZE);
|
||||
@ -276,6 +272,10 @@ int MPV_common_init(MpegEncContext *s)
|
||||
}
|
||||
CHECKED_ALLOCZ(s->qscale_table , s->mb_num * sizeof(UINT8))
|
||||
|
||||
/* which mb is a intra block */
|
||||
CHECKED_ALLOCZ(s->mbintra_table, s->mb_num);
|
||||
memset(s->mbintra_table, 1, s->mb_num);
|
||||
|
||||
/* default structure is frame */
|
||||
s->picture_structure = PICT_FRAME;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user