X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fmisc%2Fdummy%2Finterface.c;h=f30709479f07e5d192fffde50f800563de2ec85d;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=627762e2a6b9bac0a6c4e4af535ea532a55023e5;hpb=fe087a38282e93addb25fa9598393e40ea233b09;p=vlc diff --git a/modules/misc/dummy/interface.c b/modules/misc/dummy/interface.c index 627762e2a6..f30709479f 100644 --- a/modules/misc/dummy/interface.c +++ b/modules/misc/dummy/interface.c @@ -10,7 +10,7 @@ * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -18,22 +18,17 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ -#include /* malloc(), free() */ -#include #include -#include +#include -/***************************************************************************** - * Local prototypes. - *****************************************************************************/ -static void Run ( intf_thread_t * ); +#include "dummy.h" /***************************************************************************** * Open: initialize dummy interface @@ -49,22 +44,9 @@ int E_(OpenIntf) ( vlc_object_t *p_this ) CONSOLE_INTRO_MSG; #endif - msg_Info( p_intf, "Using the dummy interface module..." ); + msg_Info( p_intf, "using the dummy interface module..." ); - p_intf->pf_run = Run; + p_intf->pf_run = NULL; return VLC_SUCCESS; } - -/***************************************************************************** - * Run: main loop - *****************************************************************************/ -static void Run( intf_thread_t *p_intf ) -{ - while( !p_intf->b_die ) - { - /* Wait a bit */ - msleep( INTF_IDLE_SLEEP ); - } -} -