vo_tct: remove unused variable

This commit is contained in:
Avi Halachmi (:avih) 2020-11-29 14:01:17 +02:00
parent 6ebac1f794
commit d4233021c7
1 changed files with 0 additions and 7 deletions

View File

@ -76,7 +76,6 @@ static const struct m_sub_options vo_tct_conf = {
struct priv { struct priv {
struct vo_tct_opts *opts; struct vo_tct_opts *opts;
size_t buffer_size; size_t buffer_size;
char *buffer;
int swidth; int swidth;
int sheight; int sheight;
struct mp_image *frame; struct mp_image *frame;
@ -200,9 +199,6 @@ static int reconfig(struct vo *vo, struct mp_image_params *params)
p->swidth = p->dst.x1 - p->dst.x0; p->swidth = p->dst.x1 - p->dst.x0;
p->sheight = p->dst.y1 - p->dst.y0; p->sheight = p->dst.y1 - p->dst.y0;
if (p->buffer)
free(p->buffer);
p->sws->src = *params; p->sws->src = *params;
p->sws->dst = (struct mp_image_params) { p->sws->dst = (struct mp_image_params) {
.imgfmt = IMGFMT, .imgfmt = IMGFMT,
@ -257,9 +253,6 @@ static void uninit(struct vo *vo)
printf(ESC_RESTORE_CURSOR); printf(ESC_RESTORE_CURSOR);
printf(ESC_CLEAR_SCREEN); printf(ESC_CLEAR_SCREEN);
printf(ESC_GOTOXY, 0, 0); printf(ESC_GOTOXY, 0, 0);
struct priv *p = vo->priv;
if (p->buffer)
talloc_free(p->buffer);
} }
static int preinit(struct vo *vo) static int preinit(struct vo *vo)