From c71d348a7df75558c1092ccd446989de347ff09d Mon Sep 17 00:00:00 2001 From: ben Date: Sat, 7 Jun 2008 12:57:23 +0000 Subject: Rename some functions as they are mplayer related and not from libdvdnav public API. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27018 b3059339-0415-0410-9bf9-f77b7e298cf2 --- command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'command.c') diff --git a/command.c b/command.c index 6c224ff697..dbec5918c1 100644 --- a/command.c +++ b/command.c @@ -826,7 +826,7 @@ static int mp_property_audio(m_option_t * prop, int action, void *arg, #ifdef USE_DVDNAV else if (mpctx->stream->type == STREAMTYPE_DVDNAV) - dvdnav_lang_from_aid(mpctx->stream, audio_id, lang); + mp_dvdnav_lang_from_aid(mpctx->stream, audio_id, lang); #endif *(char **) arg = malloc(64); snprintf(*(char **) arg, 64, "(%d) %s", audio_id, lang); @@ -1342,7 +1342,7 @@ static int mp_property_sub(m_option_t * prop, int action, void *arg, if (mpctx->stream->type == STREAMTYPE_DVDNAV) { if (vo_spudec && dvdsub_id >= 0) { unsigned char lang[3]; - if (dvdnav_lang_from_sid(mpctx->stream, dvdsub_id, lang)) { + if (mp_dvdnav_lang_from_sid(mpctx->stream, dvdsub_id, lang)) { snprintf(*(char **) arg, 63, "(%d) %s", dvdsub_id, lang); return M_PROPERTY_OK; } -- cgit v1.2.3