~ubuntu-branches/ubuntu/lucid/ffmpeg/lucid-updates

« back to all changes in this revision

Viewing changes to libavcodec/msrledec.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-03-13 09:18:28 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090313091828-n4ktby5eca487uhv
Tags: 3:0.svn20090303-1ubuntu1+unstripped1
merge from ubuntu.jaunty branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
    uint8_t *output, *output_end;
136
136
    const uint8_t* src = data;
137
137
    int p1, p2, line=avctx->height, pos=0, i;
138
 
    uint16_t pix16;
139
 
    uint32_t pix32;
 
138
    uint16_t av_uninit(pix16);
 
139
    uint32_t av_uninit(pix32);
140
140
 
141
141
    output = pic->data[0] + (avctx->height - 1) * pic->linesize[0];
142
142
    output_end = pic->data[0] + (avctx->height) * pic->linesize[0];