mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-29 10:52:20 +00:00
avcodec/mpegvideo: Don't reset coded_block unnecessarily
coded_block is only used for I-frames, so it is unnecessary to reset it in ff_clean_intra_table_entries() (which cleans certain tables for a non-intra MB). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
ba033acb56
commit
582d828f75
@ -808,7 +808,7 @@ void ff_mpv_common_end(MpegEncContext *s)
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clean dc, ac, coded_block for the current non-intra MB.
|
* Clean dc, ac for the current non-intra MB.
|
||||||
*/
|
*/
|
||||||
void ff_clean_intra_table_entries(MpegEncContext *s)
|
void ff_clean_intra_table_entries(MpegEncContext *s)
|
||||||
{
|
{
|
||||||
@ -822,12 +822,6 @@ void ff_clean_intra_table_entries(MpegEncContext *s)
|
|||||||
/* ac pred */
|
/* ac pred */
|
||||||
memset(s->ac_val[0][xy ], 0, 32 * sizeof(int16_t));
|
memset(s->ac_val[0][xy ], 0, 32 * sizeof(int16_t));
|
||||||
memset(s->ac_val[0][xy + wrap], 0, 32 * sizeof(int16_t));
|
memset(s->ac_val[0][xy + wrap], 0, 32 * sizeof(int16_t));
|
||||||
if (s->msmpeg4_version>=3) {
|
|
||||||
s->coded_block[xy ] =
|
|
||||||
s->coded_block[xy + 1 ] =
|
|
||||||
s->coded_block[xy + wrap] =
|
|
||||||
s->coded_block[xy + 1 + wrap] = 0;
|
|
||||||
}
|
|
||||||
/* chroma */
|
/* chroma */
|
||||||
wrap = s->mb_stride;
|
wrap = s->mb_stride;
|
||||||
xy = s->mb_x + s->mb_y * wrap;
|
xy = s->mb_x + s->mb_y * wrap;
|
||||||
|
Loading…
Reference in New Issue
Block a user