Mercurial > audlegacy-plugins
view src/mpg123/interface.c @ 65:d54fa96988b3 trunk
[svn] - correct formatting issue
author | nenolod |
---|---|
date | Sat, 30 Sep 2006 22:05:07 -0700 |
parents | 3da1b8942b8b |
children |
line wrap: on
line source
/* * libmpgdec: An advanced MPEG 1/2/3 decoder engine. * interface.c: library interfaces * * Copyright (c) 2005-2006 William Pitcock <nenolod@nenolod.net> * Portions copyright (C) 1999 Michael Hipp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "common.h" static const long outscale = 32768; mpgdec_t *global_ins; mpgdec_t *mpgdec_new(void) { mpgdec_t *ins = g_malloc0(sizeof(mpgdec_t)); /* yeah i know this is cheating */ global_ins = ins; mpgdec_make_decode_tables(outscale); psycho_init(); return ins; }