Commit 503d8bf7 authored by Clément Bœsch's avatar Clément Bœsch

lavu/frame: use AVPALETTE_SIZE instead of 1024

parent 4c5136a4
......@@ -198,7 +198,7 @@ static int get_video_buffer(AVFrame *frame, int align)
}
if (desc->flags & AV_PIX_FMT_FLAG_PAL || desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL) {
av_buffer_unref(&frame->buf[1]);
frame->buf[1] = av_buffer_alloc(1024);
frame->buf[1] = av_buffer_alloc(AVPALETTE_SIZE);
if (!frame->buf[1])
goto fail;
frame->data[1] = frame->buf[1]->data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment