mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
24 lines
432 B
C
24 lines
432 B
C
|
/*
|
||
|
* SPU Decoder Prototype
|
||
|
*
|
||
|
* Copyright (C) 2001.2002 Andreas Schultz <aschultz@warp10.net>
|
||
|
*
|
||
|
* This code is distributed under the terms and conditions of the
|
||
|
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
|
||
|
*
|
||
|
* $Id: spu.c 1.1 2002/09/08 14:17:41 kls Exp $
|
||
|
*/
|
||
|
|
||
|
#include <inttypes.h>
|
||
|
#include "spu.h"
|
||
|
|
||
|
// -- cSpuDecoder ----------------
|
||
|
/*
|
||
|
cSpuDecoder::cSpuDecoder()
|
||
|
{};
|
||
|
*/
|
||
|
|
||
|
cSpuDecoder::~cSpuDecoder()
|
||
|
{
|
||
|
};
|