Print warning about encrypted audio tracks

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25055 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rtogni 2007-11-15 22:16:41 +00:00
parent 8db062d683
commit 873a53b546
1 changed files with 2 additions and 0 deletions

View File

@ -1491,6 +1491,8 @@ static demuxer_t* demux_open_real(demuxer_t* demuxer)
++a_streams;
} else if (strstr(mimet,"x-ralf-mpeg4")) {
mp_msg(MSGT_DEMUX,MSGL_ERR,"Real lossless audio not supported yet\n");
} else if (strstr(mimet,"x-pn-encrypted-ra")) {
mp_msg(MSGT_DEMUX,MSGL_ERR,"Encrypted audio is not supported\n");
} else {
mp_msg(MSGT_DEMUX,MSGL_V,"Unknown audio stream format\n");
}