[MPlayer-cvslog] r29588 - in trunk: etc/codecs.conf libmpdemux/mp_taglists.c

cehoyos subversion at mplayerhq.hu
Sun Aug 30 23:14:42 CEST 2009


Author: cehoyos
Date: Sun Aug 30 23:14:42 2009
New Revision: 29588

Log:
Support PCM in Bluray streams.

Modified:
   trunk/etc/codecs.conf
   trunk/libmpdemux/mp_taglists.c

Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf	Sun Aug 30 01:08:32 2009	(r29587)
+++ trunk/etc/codecs.conf	Sun Aug 30 23:14:42 2009	(r29588)
@@ -3786,6 +3786,13 @@ audiocodec dvdpcm
   format 0x10001
   driver dvdpcm
 
+audiocodec lpcm
+  info "Bluray LPCM"
+  status working
+  fourcc BPCM
+  driver ffmpeg
+  dll pcm_bluray
+
 audiocodec a52
   info "AC3-liba52"
   status working

Modified: trunk/libmpdemux/mp_taglists.c
==============================================================================
--- trunk/libmpdemux/mp_taglists.c	Sun Aug 30 01:08:32 2009	(r29587)
+++ trunk/libmpdemux/mp_taglists.c	Sun Aug 30 23:14:42 2009	(r29588)
@@ -63,6 +63,7 @@ static const AVCodecTag mp_wav_override_
     { CODEC_ID_PCM_S24LE,         1},
     { CODEC_ID_PCM_S32BE,         MKTAG('i', 'n', '3', '2')},
     { CODEC_ID_PCM_S32LE,         1},
+    { CODEC_ID_PCM_BLURAY,        MKTAG('B', 'P', 'C', 'M')},
     { 0, 0 },
 };
 


More information about the MPlayer-cvslog mailing list