Commit 0a403588 authored by Reimar Döffinger's avatar Reimar Döffinger

Make variable that always has the same value const.

Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
parent daa47fdd
...@@ -138,7 +138,8 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -138,7 +138,8 @@ static int decode_frame(AVCodecContext *avctx,
const uint32_t *buf32; const uint32_t *buf32;
uint32_t *luma1,*luma2,*cb,*cr; uint32_t *luma1,*luma2,*cb,*cr;
uint32_t offs[4]; uint32_t offs[4];
int i, j, is_chroma, planes; int i, j, is_chroma;
const int planes = 3;
header = AV_RL32(buf); header = AV_RL32(buf);
...@@ -246,7 +247,6 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -246,7 +247,6 @@ static int decode_frame(AVCodecContext *avctx,
* Fraps v4 is virtually the same * Fraps v4 is virtually the same
*/ */
avctx->pix_fmt = PIX_FMT_YUVJ420P; avctx->pix_fmt = PIX_FMT_YUVJ420P;
planes = 3;
f->reference = 3; f->reference = 3;
f->buffer_hints = FF_BUFFER_HINTS_VALID | f->buffer_hints = FF_BUFFER_HINTS_VALID |
FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_PRESERVE |
...@@ -291,7 +291,6 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -291,7 +291,6 @@ static int decode_frame(AVCodecContext *avctx,
case 5: case 5:
/* Virtually the same as version 4, but is for RGB24 */ /* Virtually the same as version 4, but is for RGB24 */
avctx->pix_fmt = PIX_FMT_BGR24; avctx->pix_fmt = PIX_FMT_BGR24;
planes = 3;
f->reference = 3; f->reference = 3;
f->buffer_hints = FF_BUFFER_HINTS_VALID | f->buffer_hints = FF_BUFFER_HINTS_VALID |
FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_PRESERVE |
......
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