~ubuntu-branches/ubuntu/karmic/mplayer/karmic

« back to all changes in this revision

Viewing changes to libavcodec/flashsvenc.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-06-06 23:01:52 UTC
  • mfrom: (0.1.6 squeeze) (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090606230152-qxn13xfnq65nz088
Tags: 2:1.0~rc3+svn20090426-1ubuntu1
* Switch to debian packaging for the mplayer package
* New upstream release, LP: #336697, #260918, #246675, #243453, #74282
* Fixes security issues: CVE-2008-5616, LP: #308939
* many flv fixes LP: #73271, #347021
* Build and install mencoder
* Bump epoch

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
/* Encoding development sponsored by http://fh-campuswien.ac.at */
24
24
 
25
25
/**
26
 
 * @file flashsvenc.c
 
26
 * @file libavcodec/flashsvenc.c
27
27
 * Flash Screen Video encoder
28
28
 * @author Alex Beregszaszi
29
29
 * @author Benjamin Larsson
97
97
    return 0;
98
98
}
99
99
 
100
 
static int flashsv_encode_init(AVCodecContext *avctx)
 
100
static av_cold int flashsv_encode_init(AVCodecContext *avctx)
101
101
{
102
102
    FlashSVContext *s = avctx->priv_data;
103
103
 
271
271
    return res;
272
272
}
273
273
 
274
 
static int flashsv_encode_end(AVCodecContext *avctx)
 
274
static av_cold int flashsv_encode_end(AVCodecContext *avctx)
275
275
{
276
276
    FlashSVContext *s = avctx->priv_data;
277
277
 
292
292
    flashsv_encode_init,
293
293
    flashsv_encode_frame,
294
294
    flashsv_encode_end,
295
 
    .pix_fmts = (enum PixelFormat[]){PIX_FMT_BGR24, -1},
 
295
    .pix_fmts = (enum PixelFormat[]){PIX_FMT_BGR24, PIX_FMT_NONE},
 
296
    .long_name = NULL_IF_CONFIG_SMALL("Flash Screen Video"),
296
297
};
297
298