summaryrefslogtreecommitdiffstats
path: root/src/encoder/encoderffmpegmp3.h
blob: 53e6c2d3ee685bdc24bdba0421bf5e36277d6447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/****************************************************************************
                   encoderffmpegmp3.cpp  -  FFMPEG MP3 encoder for mixxx
                             -------------------
    copyright            : (C) 2012-2013 by Tuukka Pasanen
                           (C) 2007 by Wesley Stessens
                           (C) 1994 by Xiph.org (encoder example)
                           (C) 1994 Tobias Rafreider (broadcast and recording fixes)
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef ENCODERFFMPEGMP3_H
#define ENCODERFFMPEGMP3_H

#include "encoderffmpegcore.h"

class EncoderFfmpegCore;

class EncoderFfmpegMp3 : public EncoderFfmpegCore {
public:
    EncoderFfmpegMp3(EncoderCallback* pCallback=NULL);
};

#endif