~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/indeo5.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
627
627
    ctx->switch_buffers   = switch_buffers;
628
628
    ctx->is_nonnull_frame = is_nonnull_frame;
629
629
 
630
 
    avctx->pix_fmt = PIX_FMT_YUV410P;
 
630
    avctx->pix_fmt = AV_PIX_FMT_YUV410P;
631
631
 
632
632
    return 0;
633
633
}
636
636
AVCodec ff_indeo5_decoder = {
637
637
    .name           = "indeo5",
638
638
    .type           = AVMEDIA_TYPE_VIDEO,
639
 
    .id             = CODEC_ID_INDEO5,
 
639
    .id             = AV_CODEC_ID_INDEO5,
640
640
    .priv_data_size = sizeof(IVI45DecContext),
641
641
    .init           = decode_init,
642
642
    .close          = ff_ivi_decode_close,
643
643
    .decode         = ff_ivi_decode_frame,
644
644
    .long_name      = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 5"),
 
645
    .capabilities   = CODEC_CAP_DR1,
645
646
};