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

« back to all changes in this revision

Viewing changes to libavcodec/smc.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:30:00 UTC
  • mfrom: (1.2.8) (1.1.13 experimental)
  • Revision ID: package-import@ubuntu.com-20120112223000-cmfo7w78q13i2fd9
Tags: 4:0.8~beta2-1ubuntu1
* Merge from debian, remaining changes:
  - don't build against libdirac, lame, libopenjpeg, librtmp, 
    x264, and xvid  (all in universe)

Show diffs side-by-side

added added

removed removed

Lines of Context:
475
475
}
476
476
 
477
477
AVCodec ff_smc_decoder = {
478
 
    "smc",
479
 
    AVMEDIA_TYPE_VIDEO,
480
 
    CODEC_ID_SMC,
481
 
    sizeof(SmcContext),
482
 
    smc_decode_init,
483
 
    NULL,
484
 
    smc_decode_end,
485
 
    smc_decode_frame,
486
 
    CODEC_CAP_DR1,
 
478
    .name           = "smc",
 
479
    .type           = AVMEDIA_TYPE_VIDEO,
 
480
    .id             = CODEC_ID_SMC,
 
481
    .priv_data_size = sizeof(SmcContext),
 
482
    .init           = smc_decode_init,
 
483
    .close          = smc_decode_end,
 
484
    .decode         = smc_decode_frame,
 
485
    .capabilities   = CODEC_CAP_DR1,
487
486
    .long_name = NULL_IF_CONFIG_SMALL("QuickTime Graphics (SMC)"),
488
487
};