summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-01-21 00:45:28 +0100
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-25 02:29:31 +0200
commit83f37b54dedcfdb07684010571137697b3955b09 (patch)
tree31fcfbf1d582c64de3e607525e5a8a241d240771
parent23ba934ec8ff9472ea09c0668351d3384a027aae (diff)
downloadmpv-83f37b54dedcfdb07684010571137697b3955b09.tar.bz2
mpv-83f37b54dedcfdb07684010571137697b3955b09.tar.xz
cleanup: remove unused MEncoder-related code
Remove some code and variables that were no longer used after MEncoder removal. Also remove some MEncoder references in comments.
-rw-r--r--cfg-mplayer.h2
-rw-r--r--defaultopts.c6
-rw-r--r--defaultopts.h1
-rw-r--r--libmpcodecs/vd_xvid4.c2
-rw-r--r--libmpcodecs/vf_framestep.c5
-rw-r--r--libmpcodecs/vf_tfields.c11
-rw-r--r--libmpcodecs/vf_yadif.c7
-rw-r--r--libvo/sub.c2
-rw-r--r--mp_msg.h2
-rw-r--r--mpcommon.c1
-rw-r--r--mpcommon.h1
-rw-r--r--mplayer.c1
-rw-r--r--stream/tv.c1
13 files changed, 10 insertions, 32 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 7f0ee1f729..ff5dd8a2c8 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -260,7 +260,6 @@ const m_option_t mplayer_opts[]={
{"menu", "OSD menu support was not compiled in.\n", CONF_TYPE_PRINT,0, 0, 0, NULL},
#endif /* CONFIG_MENU */
- // these should be moved to -common, and supported in MEncoder
{"vobsub", &vobsub_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
{"vobsubid", &vobsub_id, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
#ifdef CONFIG_UNRAR_EXEC
@@ -278,7 +277,6 @@ const m_option_t mplayer_opts[]={
OPT_FLAG_ON("benchmark", benchmark, 0),
// dump some stream out instead of playing the file
- // this really should be in MEncoder instead of MPlayer... -> TODO
OPT_STRING("dumpfile", stream_dump_name, 0),
{"dumpaudio", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 1, NULL},
{"dumpvideo", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 2, NULL},
diff --git a/defaultopts.c b/defaultopts.c
index abdd5e16f3..e9c2d85dce 100644
--- a/defaultopts.c
+++ b/defaultopts.c
@@ -67,9 +67,3 @@ void set_default_mplayer_options(struct MPOpts *opts)
}
};
}
-
-void set_default_mencoder_options(struct MPOpts *opts)
-{
- set_default_mplayer_options(opts);
- opts->user_correct_pts = 0;
-}
diff --git a/defaultopts.h b/defaultopts.h
index 15067204a7..7305a07d75 100644
--- a/defaultopts.h
+++ b/defaultopts.h
@@ -1,3 +1,2 @@
struct MPOpts;
void set_default_mplayer_options(struct MPOpts *opts);
-void set_default_mencoder_options(struct MPOpts *opts);
diff --git a/libmpcodecs/vd_xvid4.c b/libmpcodecs/vd_xvid4.c
index 62eab8c3ed..ee4ad93f58 100644
--- a/libmpcodecs/vd_xvid4.c
+++ b/libmpcodecs/vd_xvid4.c
@@ -1,5 +1,5 @@
/*
- * - XviD 1.x decoder module for mplayer/mencoder -
+ * - XviD 1.x decoder module for mplayer -
*
* Copyright(C) 2003 Marco Belli <elcabesa@inwind.it>
* 2003-2004 Edouard Gomez <ed.gomez@free.fr>
diff --git a/libmpcodecs/vf_framestep.c b/libmpcodecs/vf_framestep.c
index f4ded017ae..d6aad9a90a 100644
--- a/libmpcodecs/vf_framestep.c
+++ b/libmpcodecs/vf_framestep.c
@@ -14,9 +14,8 @@
* if you call the filter with the i (lowercase)
* ... -vf framestep=i ...
* then a I! followed by a cr is printed when a key frame (eg Intra frame) is
- * found, leaving the current line of mplayer/mencoder, where you got the
- * time, in seconds, and frame of the key. Use this information to split the
- * AVI.
+ * found, leaving the current line of mplayer, where you got the time, in
+ * seconds, and frame of the key. Use this information to split the AVI.
*
* After the i or alone you can put a positive number and only one frame every
* x (the number you set) is passed on the filter chain, limiting the output
diff --git a/libmpcodecs/vf_tfields.c b/libmpcodecs/vf_tfields.c
index ee50d4f6ca..52cd0b5684 100644
--- a/libmpcodecs/vf_tfields.c
+++ b/libmpcodecs/vf_tfields.c
@@ -336,8 +336,6 @@ static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts)
return continue_buffered_image(vf);
}
-extern const int under_mencoder;
-
static int continue_buffered_image(struct vf_instance *vf)
{
int i=vf->priv->buffered_i;
@@ -390,8 +388,7 @@ static int continue_buffered_image(struct vf_instance *vf)
dmpi->stride[2] = 2*mpi->stride[2];
}
ret |= vf_next_put_image(vf, dmpi, pts);
- if (!under_mencoder)
- break;
+ break;
}
break;
case 1:
@@ -418,8 +415,7 @@ static int continue_buffered_image(struct vf_instance *vf)
mpi->chroma_width, mpi->chroma_height, (i^!tff));
}
ret |= vf_next_put_image(vf, dmpi, pts);
- if (!under_mencoder)
- break;
+ break;
}
break;
case 2:
@@ -442,8 +438,7 @@ static int continue_buffered_image(struct vf_instance *vf)
dmpi->stride[2], mpi->stride[2]*2, (i^!tff));
}
ret |= vf_next_put_image(vf, dmpi, pts);
- if (!under_mencoder)
- break;
+ break;
}
break;
}
diff --git a/libmpcodecs/vf_yadif.c b/libmpcodecs/vf_yadif.c
index 25a84ba0e7..2b2c180405 100644
--- a/libmpcodecs/vf_yadif.c
+++ b/libmpcodecs/vf_yadif.c
@@ -411,8 +411,6 @@ static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){
return continue_buffered_image(vf);
}
-extern const int under_mencoder;
-
static int continue_buffered_image(struct vf_instance *vf)
{
mp_image_t *mpi = vf->priv->buffered_mpi;
@@ -431,11 +429,10 @@ static int continue_buffered_image(struct vf_instance *vf)
mpi->width,mpi->height);
vf_clone_mpi_attributes(dmpi, mpi);
filter(vf->priv, dmpi->planes, dmpi->stride, mpi->w, mpi->h, i ^ tff ^ 1, tff);
- if (i < (vf->priv->mode & 1) && !under_mencoder)
+ if (i < (vf->priv->mode & 1))
vf_queue_frame(vf, continue_buffered_image);
ret |= vf_next_put_image(vf, dmpi, pts /*FIXME*/);
- if (!under_mencoder)
- break;
+ break;
}
vf->priv->buffered_i = 1;
return ret;
diff --git a/libvo/sub.c b/libvo/sub.c
index 2c0f29d485..58a777070e 100644
--- a/libvo/sub.c
+++ b/libvo/sub.c
@@ -1229,7 +1229,7 @@ struct osd_state *osd_create(void)
draw_alpha_init_flag=1;
vo_draw_alpha_init();
}
- // temp hack, should be moved to mplayer/mencoder later
+ // temp hack, should be moved to mplayer later
new_osd_obj(OSDTYPE_OSD);
new_osd_obj(OSDTYPE_SUBTITLE);
new_osd_obj(OSDTYPE_PROGBAR);
diff --git a/mp_msg.h b/mp_msg.h
index ef37710599..ca39aa092e 100644
--- a/mp_msg.h
+++ b/mp_msg.h
@@ -21,7 +21,7 @@
#include <stdarg.h>
-// defined in mplayer.c and mencoder.c
+// defined in mplayer.c
extern int verbose;
/* No-op macro to mark translated strings in the sources */
diff --git a/mpcommon.c b/mpcommon.c
index 2fa7b6d0a8..f1b1828c1f 100644
--- a/mpcommon.c
+++ b/mpcommon.c
@@ -50,7 +50,6 @@ ASS_Track *ass_track = 0; // current track to render
sub_data* subdata = NULL;
subtitle* vo_sub_last = NULL;
-const char *mencoder_version = "MEncoder " VERSION;
const char *mplayer_version = "MPlayer " VERSION;
void print_version(const char* name)
diff --git a/mpcommon.h b/mpcommon.h
index f1f01d7942..d34be23e32 100644
--- a/mpcommon.h
+++ b/mpcommon.h
@@ -30,7 +30,6 @@ extern struct subtitle *vo_sub_last;
extern int disable_system_conf;
extern int disable_user_conf;
-extern const char *mencoder_version;
extern const char *mplayer_version;
struct MPContext;
diff --git a/mplayer.c b/mplayer.c
index b7d022bbe4..858026f545 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -98,7 +98,6 @@
#include "input/input.h"
-const int under_mencoder = 0;
int slave_mode=0;
int enable_mouse_movements=0;
float start_volume = -1;
diff --git a/stream/tv.c b/stream/tv.c
index 925109e778..5ebd4bf59c 100644
--- a/stream/tv.c
+++ b/stream/tv.c
@@ -888,7 +888,6 @@ static void demux_close_tv(demuxer_t *demuxer)
demuxer->teletext=NULL;
}
-/* utilities for mplayer (not mencoder!!) */
int tv_set_color_options(tvi_handle_t *tvh, int opt, int value)
{
const tvi_functions_t *funcs = tvh->functions;