Browse Source

Remove dead assignments found by CSA

Originally committed as revision 18733 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Benjamin Larsson 17 years ago
parent
commit
6b71ed1678
3 changed files with 1 additions and 5 deletions
  1. +0
    -1
      libavcodec/qtrleenc.c
  2. +1
    -2
      libavcodec/sp5xdec.c
  3. +0
    -2
      libavformat/mtv.c

+ 0
- 1
libavcodec/qtrleenc.c View File

@@ -200,7 +200,6 @@ static void qtrle_encode_line(QtrleEncContext *s, AVFrame *p, int line, uint8_t

i=0;
this_line = p-> data[0] + line*p->linesize[0];
prev_line = s->previous_frame.data[0] + line*p->linesize[0];

if (s->rlecode_table[0] == 0) {
bytestream_put_byte(buf, s->skip_table[0] + 1);


+ 1
- 2
libavcodec/sp5xdec.c View File

@@ -41,7 +41,7 @@ static int sp5x_decode_frame(AVCodecContext *avctx,
MJpegDecodeContext *s = avctx->priv_data;
#endif
const int qscale = 5;
const uint8_t *buf_ptr, *buf_end;
const uint8_t *buf_ptr;
uint8_t *recoded;
int i = 0, j = 0;

@@ -49,7 +49,6 @@ static int sp5x_decode_frame(AVCodecContext *avctx,
return -1;

buf_ptr = buf;
buf_end = buf + buf_size;

#if 1
recoded = av_mallocz(buf_size + 1024);


+ 0
- 2
libavformat/mtv.c View File

@@ -133,8 +133,6 @@ static int mtv_read_packet(AVFormatContext *s, AVPacket *pkt)
int i;
#endif

ret = 0;

if((url_ftell(pb) - s->data_offset + mtv->img_segment_size) % mtv->full_segment_size)
{
url_fskip(pb, MTV_AUDIO_PADDING_SIZE);


Loading…
Cancel
Save