Path: blob/main/src/lwjgl/java/javazoom/jl/decoder/FrameDecoder.java
8650 views
/*1* 09/26/08 throw exception on subbband alloc error: Christopher G. Jennings ([email protected])2* 11/19/04 1.0 moved to LGPL.3* 12/12/99 Initial version. [email protected]4*-----------------------------------------------------------------------5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU Library General Public License as published7* by the Free Software Foundation; either version 2 of the License, or8* (at your option) any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU Library General Public License for more details.14*15* You should have received a copy of the GNU Library General Public16* License along with this program; if not, write to the Free Software17* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.18*----------------------------------------------------------------------19*/2021package javazoom.jl.decoder;2223/**24* Implementations of FrameDecoder are responsible for decoding25* an MPEG audio frame.26*27*/28//REVIEW: the interface currently is too thin. There should be29// methods to specify the output buffer, the synthesis filters and30// possibly other objects used by the decoder.31public interface FrameDecoder32{33/**34* Decodes one frame of MPEG audio.35*/36public void decodeFrame() throws DecoderException;3738}394041