summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-09 16:01:36 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-09 16:01:36 +0000
commite364249f21f7273f86d03264ec4d6d4957bd7dd5 (patch)
tree8c44cb7b9d1d67ba58f022cded15221175d5354f /libmpcodecs
parent4a3877c93ac469786ab704159b1a4744621daf73 (diff)
downloadmpv-e364249f21f7273f86d03264ec4d6d4957bd7dd5.tar.bz2
mpv-e364249f21f7273f86d03264ec4d6d4957bd7dd5.tar.xz
Remove unused variables, patch by Stefan Huehner, stefan ##at## huehner org.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18981 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/pullup.c2
-rw-r--r--libmpcodecs/vd_theora.c1
-rw-r--r--libmpcodecs/ve_lavc.c5
-rw-r--r--libmpcodecs/vf_detc.c1
-rw-r--r--libmpcodecs/vf_harddup.c1
-rw-r--r--libmpcodecs/vf_kerndeint.c3
-rw-r--r--libmpcodecs/vf_remove_logo.c2
-rw-r--r--libmpcodecs/vf_uspp.c2
8 files changed, 1 insertions, 16 deletions
diff --git a/libmpcodecs/pullup.c b/libmpcodecs/pullup.c
index 6f731ec826..ce73732f4c 100644
--- a/libmpcodecs/pullup.c
+++ b/libmpcodecs/pullup.c
@@ -608,7 +608,6 @@ static int decide_frame_length(struct pullup_context *c)
static void print_aff_and_breaks(struct pullup_context *c, struct pullup_field *f)
{
int i;
- int max_l, max_r, l;
struct pullup_field *f0 = f;
const char aff_l[] = "+..", aff_r[] = "..+";
printf("\naffinity: ");
@@ -698,7 +697,6 @@ static void copy_field(struct pullup_context *c, struct pullup_buffer *dest,
void pullup_pack_frame(struct pullup_context *c, struct pullup_frame *fr)
{
int i;
- int par = fr->parity;
if (fr->buffer) return;
if (fr->length < 2) return; /* FIXME: deal with this */
for (i = 0; i < 2; i++)
diff --git a/libmpcodecs/vd_theora.c b/libmpcodecs/vd_theora.c
index 6bf1248155..58321aa4f2 100644
--- a/libmpcodecs/vd_theora.c
+++ b/libmpcodecs/vd_theora.c
@@ -142,7 +142,6 @@ static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags)
ogg_packet op;
yuv_buffer yuv;
mp_image_t* mpi;
- int i;
memset (&op, 0, sizeof (op));
op.bytes = len;
diff --git a/libmpcodecs/ve_lavc.c b/libmpcodecs/ve_lavc.c
index 2eb23da516..860a5d1af8 100644
--- a/libmpcodecs/ve_lavc.c
+++ b/libmpcodecs/ve_lavc.c
@@ -911,10 +911,6 @@ static int encode_frame(struct vf_instance_s* vf, AVFrame *pic, double pts){
if(lavc_param_psnr){
static FILE *fvstats=NULL;
char filename[20];
- static long long int all_len=0;
- static int frame_number=0;
- static double all_frametime=0.0;
- AVFrame *pic= lavc_venc_context->coded_frame;
double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0;
double quality=0.0;
int8_t *q;
@@ -970,7 +966,6 @@ static int encode_frame(struct vf_instance_s* vf, AVFrame *pic, double pts){
}
static void uninit(struct vf_instance_s* vf){
- const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'};
#if LIBAVCODEC_BUILD >= 4643
if(lavc_param_psnr){
diff --git a/libmpcodecs/vf_detc.c b/libmpcodecs/vf_detc.c
index 40d68f880e..52932d8d6b 100644
--- a/libmpcodecs/vf_detc.c
+++ b/libmpcodecs/vf_detc.c
@@ -177,7 +177,6 @@ static int analyze_fixed_pattern(struct vf_priv_s *p, mp_image_t *new, mp_image_
static int analyze_aggressive(struct vf_priv_s *p, mp_image_t *new, mp_image_t *old)
{
- int i;
struct metrics m, pm;
if (p->frame >= 0) p->frame = (p->frame+1)%5;
diff --git a/libmpcodecs/vf_harddup.c b/libmpcodecs/vf_harddup.c
index eb7527a703..65d077b083 100644
--- a/libmpcodecs/vf_harddup.c
+++ b/libmpcodecs/vf_harddup.c
@@ -18,7 +18,6 @@ struct vf_priv_s {
static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts)
{
mp_image_t *dmpi;
- int ret;
vf->priv->last_mpi = mpi;
diff --git a/libmpcodecs/vf_kerndeint.c b/libmpcodecs/vf_kerndeint.c
index f687b8942c..4d66a3898d 100644
--- a/libmpcodecs/vf_kerndeint.c
+++ b/libmpcodecs/vf_kerndeint.c
@@ -91,7 +91,6 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
int n = vf->priv->frame++;
int val, hi, lo, w, h;
double valf;
- unsigned int hint;
int plane;
int threshold = vf->priv->thresh;
int order = vf->priv->order;
@@ -289,8 +288,6 @@ static int query_format(struct vf_instance_s* vf, unsigned int fmt){
}
static int open(vf_instance_t *vf, char* args){
- double LumSpac, LumTmp, ChromSpac, ChromTmp;
- double Param1, Param2, Param3;
vf->config=config;
vf->put_image=put_image;
diff --git a/libmpcodecs/vf_remove_logo.c b/libmpcodecs/vf_remove_logo.c
index a3a5e47eb3..775c81d280 100644
--- a/libmpcodecs/vf_remove_logo.c
+++ b/libmpcodecs/vf_remove_logo.c
@@ -535,8 +535,6 @@ void load_pgm_skip(FILE *f) {
*/
pgm_structure * load_pgm(const char * file_name)
{
- unsigned char flags;
- int x, y;
int maximum_greyscale_value;
FILE * input;
int pnm_number;
diff --git a/libmpcodecs/vf_uspp.c b/libmpcodecs/vf_uspp.c
index 14ae9592a0..24d388dcb2 100644
--- a/libmpcodecs/vf_uspp.c
+++ b/libmpcodecs/vf_uspp.c
@@ -177,7 +177,7 @@ static void filter(struct vf_priv_s *p, uint8_t *dst[3], uint8_t *src[3], int ds
for(i=0; i<count; i++){
const int x1= offset[i+count-1][0];
const int y1= offset[i+count-1][1];
- int offset, out_size, got_picture;
+ int offset, out_size;
p->frame->data[0]= p->src[0] + x1 + y1 * p->frame->linesize[0];
p->frame->data[1]= p->src[1] + x1/2 + y1/2 * p->frame->linesize[1];
p->frame->data[2]= p->src[2] + x1/2 + y1/2 * p->frame->linesize[2];