~ubuntu-branches/ubuntu/lucid/ffmpeg/lucid-updates

« back to all changes in this revision

Viewing changes to libavcodec/dvdsub_parser.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-03-13 09:18:28 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090313091828-n4ktby5eca487uhv
Tags: 3:0.svn20090303-1ubuntu1+unstripped1
merge from ubuntu.jaunty branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    int packet_index;
30
30
} DVDSubParseContext;
31
31
 
32
 
static int dvdsub_parse_init(AVCodecParserContext *s)
 
32
static av_cold int dvdsub_parse_init(AVCodecParserContext *s)
33
33
{
34
34
    return 0;
35
35
}
70
70
    return buf_size;
71
71
}
72
72
 
73
 
static void dvdsub_parse_close(AVCodecParserContext *s)
 
73
static av_cold void dvdsub_parse_close(AVCodecParserContext *s)
74
74
{
75
75
    DVDSubParseContext *pc = s->priv_data;
76
76
    av_freep(&pc->packet);