Move internal function ff_set_systematic_pal() to libavcore, and
rename it ff_set_systematic_pal2(). Originally committed as revision 25712 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -29,6 +29,7 @@
|
||||
#include "raw.h"
|
||||
#include "libavutil/intreadwrite.h"
|
||||
#include "libavcore/imgutils.h"
|
||||
#include "libavcore/internal.h"
|
||||
|
||||
typedef struct RawVideoContext {
|
||||
uint32_t palette[AVPALETTE_COUNT];
|
||||
@@ -83,7 +84,7 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx)
|
||||
else if (avctx->pix_fmt == PIX_FMT_NONE && avctx->bits_per_coded_sample)
|
||||
avctx->pix_fmt = find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample);
|
||||
|
||||
ff_set_systematic_pal(context->palette, avctx->pix_fmt);
|
||||
ff_set_systematic_pal2(context->palette, avctx->pix_fmt);
|
||||
context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
|
||||
if((avctx->bits_per_coded_sample == 4 || avctx->bits_per_coded_sample == 2) &&
|
||||
avctx->pix_fmt==PIX_FMT_PAL8 &&
|
||||
|
Reference in New Issue
Block a user