Set pix_fmt to the correct value for the format the PGS decoder actually uses.

Originally committed as revision 24187 to svn://svn.ffmpeg.org/ffmpeg/trunk
oldabi
Reimar Döffinger 15 years ago
parent 3174073623
commit 849ff0c4d1
  1. 2
      libavcodec/pgssubdec.c

@ -64,7 +64,7 @@ typedef struct PGSSubContext {
static av_cold int init_decoder(AVCodecContext *avctx)
{
avctx->pix_fmt = PIX_FMT_RGB32;
avctx->pix_fmt = PIX_FMT_PAL8;
return 0;
}

Loading…
Cancel
Save