summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-20 18:54:22 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-20 18:54:22 +0000
commitebf6cc4c1a846744195cedd8b513ddc3e82da338 (patch)
treed9b508c8ccdb082e2e4339c575cef52c5855fc5b /mencoder.c
parenta000194a10272f9215afdcec386b70363868dc4e (diff)
downloadmpv-ebf6cc4c1a846744195cedd8b513ddc3e82da338.tar.bz2
mpv-ebf6cc4c1a846744195cedd8b513ddc3e82da338.tar.xz
some mpcodecs option declaration moved to cfg-*, as aren;t used by
mencoder/mplayer core git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7452 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/mencoder.c b/mencoder.c
index 6b71265ae5..8d0aead585 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -90,13 +90,6 @@ char *video_codec=NULL; // override video codec
char* audio_fm=NULL; // override audio codec family
char* video_fm=NULL; // override video codec family
-// libvo opts: (defiend at libmpcodecs/vd.c)
-extern int screen_size_xy;
-extern float movie_aspect;
-extern int softzoom;
-extern int flip;
-
-
int out_audio_codec=-1;
int out_video_codec=-1;
@@ -209,7 +202,7 @@ static char *seek_to_sec=NULL;
static off_t seek_to_byte=0;
static int parse_end_at(struct config *conf, const char* param);
-static uint8_t* flip_upside_down(uint8_t* dst, const uint8_t* src, int width, int height);
+//static uint8_t* flip_upside_down(uint8_t* dst, const uint8_t* src, int width, int height);
#include "get_path.c"
@@ -1304,6 +1297,7 @@ static int parse_end_at(struct config *conf, const char* param)
return 1;
}
+#if 0
/* Flip the image in src and store the result in dst. src and dst may overlap.
width is the size of each line in bytes. */
static uint8_t* flip_upside_down(uint8_t* dst, const uint8_t* src, int width,
@@ -1321,4 +1315,4 @@ static uint8_t* flip_upside_down(uint8_t* dst, const uint8_t* src, int width,
free(tmp);
return dst;
}
-
+#endif