From a64cd8d3c802f91ae77d1cf20ee9300bea079cd6 Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 11 Sep 2010 23:53:15 +0000 Subject: stream/tv: move free_handle() from header to tv.c Move TV input free_handle static function to tv.c and make it non-static. There is no need to duplicate the function in the binary. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32174 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tv.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'stream/tv.c') diff --git a/stream/tv.c b/stream/tv.c index cb1fe59fee..55b7033adb 100644 --- a/stream/tv.c +++ b/stream/tv.c @@ -80,6 +80,17 @@ static const tvi_info_t* tvi_driver_list[]={ NULL }; +void tv_free_handle(tvi_handle_t *h) +{ + if (h) { + if (h->priv) + free(h->priv); + if (h->scan) + free(h->scan); + free(h); + } +} + void tv_start_scan(tvi_handle_t *tvh, int start) { mp_msg(MSGT_TV,MSGL_INFO,"start scan\n"); -- cgit v1.2.3