~noskcaj/ubuntu/saucy/libav/merge0.8.7-1

« back to all changes in this revision

Viewing changes to libavcodec/snowdec.c

  • Committer: Package Import Robot
  • Author(s): Jamie Strandboge
  • Date: 2012-11-16 12:39:50 UTC
  • mfrom: (26.1.1 quantal-security)
  • Revision ID: package-import@ubuntu.com-20121116123950-p11m12vkg2n8zc98
Tags: 6:0.8.4-0ubuntu1
No change rebuild for raring

Show diffs side-by-side

added added

removed removed

Lines of Context:
354
354
 
355
355
static av_cold int decode_init(AVCodecContext *avctx)
356
356
{
 
357
    int ret;
 
358
 
357
359
    avctx->pix_fmt= PIX_FMT_YUV420P;
358
360
 
359
 
    ff_snow_common_init(avctx);
 
361
    if ((ret = ff_snow_common_init(avctx)) < 0) {
 
362
        ff_snow_common_end(avctx->priv_data);
 
363
        return ret;
 
364
    }
360
365
 
361
366
    return 0;
362
367
}