From 5dd5dc66c174a5c3c4a8789572445466fd04f2e7 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 18 Dec 2015 02:04:40 +0100 Subject: sub: remove unused video width/height headers Apparently, this was replaced by the SD_CTRL_SET_VIDEO_PARAMS set dimensions. But I can't find out when this happened - possibly, these fields were never used by sd_lavc.c, and only by the (long removed) MPlayer dvdsub decoder. --- sub/dec_sub.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'sub/dec_sub.c') diff --git a/sub/dec_sub.c b/sub/dec_sub.c index 4450f577c2..4746b8f2cc 100644 --- a/sub/dec_sub.c +++ b/sub/dec_sub.c @@ -112,14 +112,6 @@ bool sub_is_initialized(struct dec_sub *sub) return r; } -void sub_set_video_res(struct dec_sub *sub, int w, int h) -{ - pthread_mutex_lock(&sub->lock); - sub->init_sd.sub_video_w = w; - sub->init_sd.sub_video_h = h; - pthread_mutex_unlock(&sub->lock); -} - void sub_set_video_fps(struct dec_sub *sub, double fps) { pthread_mutex_lock(&sub->lock); -- cgit v1.2.3