~ubuntu-branches/ubuntu/quantal/mplayer2/quantal-proposed

« back to all changes in this revision

Viewing changes to ffmpeg-mt/libavcodec/asv1.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-04-21 09:21:39 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110421092139-7a21foqroxvir3wr
Tags: 2.0-54-gd33877a-1
* New upstream version
* Bug fix: "internal MP3 decoder miscompiles with gcc 4.6", thanks to
  Norbert Preining (Closes: #623279). Fixed by no longer using internal
  mp3lib copy.
* drop build host specific optimizations

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * ASUS V1/V2 codec
3
3
 * Copyright (c) 2003 Michael Niedermayer
4
4
 *
5
 
 * This file is part of FFmpeg.
 
5
 * This file is part of Libav.
6
6
 *
7
 
 * FFmpeg is free software; you can redistribute it and/or
 
7
 * Libav is free software; you can redistribute it and/or
8
8
 * modify it under the terms of the GNU Lesser General Public
9
9
 * License as published by the Free Software Foundation; either
10
10
 * version 2.1 of the License, or (at your option) any later version.
11
11
 *
12
 
 * FFmpeg is distributed in the hope that it will be useful,
 
12
 * Libav is distributed in the hope that it will be useful,
13
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
15
 * Lesser General Public License for more details.
16
16
 *
17
17
 * You should have received a copy of the GNU Lesser General Public
18
 
 * License along with FFmpeg; if not, write to the Free Software
 
18
 * License along with Libav; if not, write to the Free Software
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
613
613
    return 0;
614
614
}
615
615
 
616
 
AVCodec asv1_decoder = {
 
616
AVCodec ff_asv1_decoder = {
617
617
    "asv1",
618
618
    AVMEDIA_TYPE_VIDEO,
619
619
    CODEC_ID_ASV1,
626
626
    .long_name= NULL_IF_CONFIG_SMALL("ASUS V1"),
627
627
};
628
628
 
629
 
AVCodec asv2_decoder = {
 
629
AVCodec ff_asv2_decoder = {
630
630
    "asv2",
631
631
    AVMEDIA_TYPE_VIDEO,
632
632
    CODEC_ID_ASV2,
640
640
};
641
641
 
642
642
#if CONFIG_ASV1_ENCODER
643
 
AVCodec asv1_encoder = {
 
643
AVCodec ff_asv1_encoder = {
644
644
    "asv1",
645
645
    AVMEDIA_TYPE_VIDEO,
646
646
    CODEC_ID_ASV1,
654
654
#endif
655
655
 
656
656
#if CONFIG_ASV2_ENCODER
657
 
AVCodec asv2_encoder = {
 
657
AVCodec ff_asv2_encoder = {
658
658
    "asv2",
659
659
    AVMEDIA_TYPE_VIDEO,
660
660
    CODEC_ID_ASV2,