~ubuntu-branches/ubuntu/trusty/libav/trusty-proposed

« back to all changes in this revision

Viewing changes to libavformat/smjpegdec.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-10-23 18:49:26 UTC
  • mto: (1.1.18 experimental)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20121023184926-cw5imrodltw6h5o4
Tags: upstream-9~beta2
ImportĀ upstreamĀ versionĀ 9~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
static int smjpeg_read_packet(AVFormatContext *s, AVPacket *pkt)
136
136
{
137
137
    SMJPEGContext *sc = s->priv_data;
138
 
    uint32_t dtype, ret, size, timestamp;
 
138
    uint32_t dtype, size, timestamp;
139
139
    int64_t pos;
 
140
    int ret;
140
141
 
141
142
    if (s->pb->eof_reached)
142
143
        return AVERROR_EOF;