mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Always allocate a buffer of AVPALETTE_SIZE for palette in the
Bluray subtitle decoder instead of as small as possible. This avoids completely unnecessary issues with e.g. libswscale. (See r19673) Patch by Stephen Backway, stev391 A exemail D com D au Originally committed as revision 19714 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7f4fca038d
commit
4a3178b012
@ -367,7 +367,7 @@ static int display_end_segment(AVCodecContext *avctx, void *data,
|
||||
|
||||
/* Allocate memory for colors */
|
||||
sub->rects[0]->nb_colors = 256;
|
||||
sub->rects[0]->pict.data[1] = av_malloc(sub->rects[0]->nb_colors * sizeof(uint32_t));
|
||||
sub->rects[0]->pict.data[1] = av_mallocz(AVPALETTE_SIZE);
|
||||
|
||||
memcpy(sub->rects[0]->pict.data[1], ctx->clut, sub->rects[0]->nb_colors * sizeof(uint32_t));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user