From 61d91f81960bf56ce5d59269e809ae67107f1762 Mon Sep 17 00:00:00 2001 From: ulion Date: Sat, 22 Dec 2007 06:27:55 +0000 Subject: Combine code for check availability of property audio(id). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25491 b3059339-0415-0410-9bf9-f77b7e298cf2 --- command.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'command.c') diff --git a/command.c b/command.c index 0e0ea7239f..f76f726afc 100644 --- a/command.c +++ b/command.c @@ -731,17 +731,16 @@ static int mp_property_audio(m_option_t * prop, int action, void *arg, { int current_id = -1, tmp; + if (!mpctx->sh_audio) + return M_PROPERTY_UNAVAILABLE; + switch (action) { case M_PROPERTY_GET: - if (!mpctx->sh_audio) - return M_PROPERTY_UNAVAILABLE; if (!arg) return M_PROPERTY_ERROR; *(int *) arg = audio_id; return M_PROPERTY_OK; case M_PROPERTY_PRINT: - if (!mpctx->sh_audio) - return M_PROPERTY_UNAVAILABLE; if (!arg) return M_PROPERTY_ERROR; -- cgit v1.2.3