changeset 29546:87b0995398b6

Support PCM in Bluray streams.
author cehoyos
date Sun, 30 Aug 2009 21:14:42 +0000
parents 647fc86d3463
children e86e60afd8b8
files etc/codecs.conf libmpdemux/mp_taglists.c
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/etc/codecs.conf	Sat Aug 29 23:08:32 2009 +0000
+++ b/etc/codecs.conf	Sun Aug 30 21:14:42 2009 +0000
@@ -3786,6 +3786,13 @@
   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
--- a/libmpdemux/mp_taglists.c	Sat Aug 29 23:08:32 2009 +0000
+++ b/libmpdemux/mp_taglists.c	Sun Aug 30 21:14:42 2009 +0000
@@ -63,6 +63,7 @@
     { 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 },
 };