diff options
Diffstat (limited to 'src/libffmpeg/libavcodec/dpcm.c')
-rw-r--r-- | src/libffmpeg/libavcodec/dpcm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libffmpeg/libavcodec/dpcm.c b/src/libffmpeg/libavcodec/dpcm.c index 78ab8cb34..c920cb403 100644 --- a/src/libffmpeg/libavcodec/dpcm.c +++ b/src/libffmpeg/libavcodec/dpcm.c @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** @@ -91,7 +91,7 @@ static int sol_table_old[16] = static int sol_table_new[16] = { 0x0, 0x1, 0x2, 0x3, 0x6, 0xA, 0xF, 0x15, 0x0, -0x1, -0x2, -0x3, -0x6, -0xA, -0xF, -0x15}; - + static int sol_table_16[128] = { 0x000, 0x008, 0x010, 0x020, 0x030, 0x040, 0x050, 0x060, 0x070, 0x080, 0x090, 0x0A0, 0x0B0, 0x0C0, 0x0D0, 0x0E0, 0x0F0, 0x100, 0x110, 0x120, @@ -130,7 +130,7 @@ static int dpcm_decode_init(AVCodecContext *avctx) } break; - + case CODEC_ID_SOL_DPCM: switch(avctx->codec_tag){ case 1: @@ -149,7 +149,7 @@ static int dpcm_decode_init(AVCodecContext *avctx) return -1; } break; - + default: break; } |