~ubuntu-branches/ubuntu/utopic/ffmpeg-debian/utopic

« back to all changes in this revision

Viewing changes to libavformat/au.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 09:20:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120092053-izz63p40hc98qfgp
Tags: 3:0.svn20090119-1ubuntu1
* merge from debian. LP: #318501
* new version fixes CVE-2008-3230, LP: #253767

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    { 0, 0 },
48
48
};
49
49
 
50
 
#ifdef CONFIG_AU_MUXER
 
50
#if CONFIG_AU_MUXER
51
51
/* AUDIO_FILE header */
52
52
static int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
53
53
{
177
177
    return 0;
178
178
}
179
179
 
180
 
#ifdef CONFIG_AU_DEMUXER
 
180
#if CONFIG_AU_DEMUXER
181
181
AVInputFormat au_demuxer = {
182
182
    "au",
183
183
    NULL_IF_CONFIG_SMALL("SUN AU format"),
191
191
};
192
192
#endif
193
193
 
194
 
#ifdef CONFIG_AU_MUXER
 
194
#if CONFIG_AU_MUXER
195
195
AVOutputFormat au_muxer = {
196
196
    "au",
197
197
    NULL_IF_CONFIG_SMALL("SUN AU format"),