comparison atrac3.c @ 6844:94dc0de175d9 libavcodec

Update copyright and text
author banan
date Thu, 22 May 2008 19:42:02 +0000
parents bc8faf4f8b7d
children d83420509f90
comparison
equal deleted inserted replaced
6843:bc8faf4f8b7d 6844:94dc0de175d9
1 /* 1 /*
2 * Atrac 3 compatible decoder 2 * Atrac 3 compatible decoder
3 * Copyright (c) 2006-2007 Maxim Poliakovski 3 * Copyright (c) 2006-2008 Maxim Poliakovski
4 * Copyright (c) 2006-2007 Benjamin Larsson 4 * Copyright (c) 2006-2008 Benjamin Larsson
5 * 5 *
6 * This file is part of FFmpeg. 6 * This file is part of FFmpeg.
7 * 7 *
8 * FFmpeg is free software; you can redistribute it and/or 8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
21 */ 21 */
22 22
23 /** 23 /**
24 * @file atrac3.c 24 * @file atrac3.c
25 * Atrac 3 compatible decoder. 25 * Atrac 3 compatible decoder.
26 * This decoder handles RealNetworks, RealAudio atrc data. 26 * This decoder handles Sony's ATRAC3 data.
27 * Atrac 3 is identified by the codec name atrc in RealMedia files. 27 *
28 * Container formats used to store atrac 3 data:
29 * RealMedia (.rm), RIFF WAV (.wav, .at3), Sony OpenMG (.oma, .aa3).
28 * 30 *
29 * To use this decoder, a calling application must supply the extradata 31 * To use this decoder, a calling application must supply the extradata
30 * bytes provided from the RealMedia container: 10 bytes or 14 bytes 32 * bytes provided in the containers above.
31 * from the WAV container.
32 */ 33 */
33 34
34 #include <math.h> 35 #include <math.h>
35 #include <stddef.h> 36 #include <stddef.h>
36 #include <stdio.h> 37 #include <stdio.h>