summaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-07 12:57:23 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-07 12:57:23 +0000
commitc71d348a7df75558c1092ccd446989de347ff09d (patch)
tree1399d448c63ba4591a7101692884658a254d0c82 /command.c
parent51880f90296668609dd999b7818632760701f357 (diff)
downloadmpv-c71d348a7df75558c1092ccd446989de347ff09d.tar.bz2
mpv-c71d348a7df75558c1092ccd446989de347ff09d.tar.xz
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
Diffstat (limited to 'command.c')
-rw-r--r--command.c4
1 files changed, 2 insertions, 2 deletions
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;
}