diff libmpdemux/demux_real.c @ 25027:8344dae32c0f

Print warning about encrypted audio tracks
author rtogni
date Thu, 15 Nov 2007 22:16:41 +0000
parents 535cdc4d7804
children a836d1288d59
line wrap: on
line diff
--- a/libmpdemux/demux_real.c	Thu Nov 15 01:07:56 2007 +0000
+++ b/libmpdemux/demux_real.c	Thu Nov 15 22:16:41 2007 +0000
@@ -1491,6 +1491,8 @@
 		    ++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");
 		}