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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 17:07:00 UTC
  • mfrom: (1.1.17) (7.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130924170700-4dg62s3pwl0pdakz
Tags: 1.2.0-1
* New upstream stable release:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
    }
85
85
}
86
86
 
 
87
FF_MPV_GENERIC_CLASS(flv)
 
88
 
87
89
AVCodec ff_flv_encoder = {
88
90
    .name           = "flv",
89
91
    .type           = AVMEDIA_TYPE_VIDEO,
90
 
    .id             = CODEC_ID_FLV1,
 
92
    .id             = AV_CODEC_ID_FLV1,
91
93
    .priv_data_size = sizeof(MpegEncContext),
92
 
    .init           = MPV_encode_init,
93
 
    .encode         = MPV_encode_picture,
94
 
    .close          = MPV_encode_end,
95
 
    .pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
96
 
    .long_name= NULL_IF_CONFIG_SMALL("Flash Video (FLV) / Sorenson Spark / Sorenson H.263"),
 
94
    .init           = ff_MPV_encode_init,
 
95
    .encode2        = ff_MPV_encode_picture,
 
96
    .close          = ff_MPV_encode_end,
 
97
    .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
 
98
    .long_name      = NULL_IF_CONFIG_SMALL("FLV / Sorenson Spark / Sorenson H.263 (Flash Video)"),
 
99
    .priv_class     = &flv_class,
97
100
};