summaryrefslogtreecommitdiff
path: root/src/lib/scaler.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-03 20:27:51 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-03 20:27:51 +0000
commitd7fe5fa4178af87b5f1e5a571a78313fa00c3327 (patch)
tree62a0aa38043fbd3458401634e9d584a678a94ea2 /src/lib/scaler.h
parentc1cfb24a12ad8109ec9e86cbff5646071ad2e85a (diff)
Remove film player, DVD ripping, alignment, screen configs; never finished and not really very likely to be.
Diffstat (limited to 'src/lib/scaler.h')
-rw-r--r--src/lib/scaler.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/scaler.h b/src/lib/scaler.h
index d5a83f732..c80f4b7db 100644
--- a/src/lib/scaler.h
+++ b/src/lib/scaler.h
@@ -33,18 +33,13 @@
class Scaler
{
public:
- Scaler (int f, int m, std::string i, std::string n);
+ Scaler (int f, std::string i, std::string n);
/** @return id used for calls to FFmpeg's pp_postprocess */
int ffmpeg_id () const {
return _ffmpeg_id;
}
- /** @return number to use on an mplayer command line */
- int mplayer_id () const {
- return _mplayer_id;
- }
-
/** @return id for our use */
std::string id () const {
return _id;
@@ -65,7 +60,6 @@ private:
/** id used for calls to FFmpeg's pp_postprocess */
int _ffmpeg_id;
- int _mplayer_id;
/** id for our use */
std::string _id;
/** user-visible name for this scaler */