From 5244303111a1432f3e37d60d0a82081ac3237ddf Mon Sep 17 00:00:00 2001 From: nicodvb Date: Sun, 10 Dec 2006 17:28:56 +0000 Subject: check that stream_type is DVD before calling dvd_lang_from_aid git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21578 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mplayer.c b/mplayer.c index f8b074b435..13edee735f 100644 --- a/mplayer.c +++ b/mplayer.c @@ -2276,7 +2276,7 @@ static int mp_property_sub(m_option_t* prop,int action,void* arg) { return M_PROPERTY_OK; } #ifdef USE_DVDREAD - if (vo_spudec && dvdsub_id >= 0) { + if (vo_spudec && stream->type == STREAMTYPE_DVD && dvdsub_id >= 0) { char lang[3]; int code = dvd_lang_from_sid(stream, dvdsub_id); lang[0] = code >> 8; -- cgit v1.2.3