summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2009-05-26 19:38:54 +0100
committerJan Schmidt <thaytan@noraisin.net>2009-05-26 21:07:47 +0100
commit8f70498c898a65d0938e3e104e91662ff5b693c3 (patch)
treeca175ee32ac9a6fbf26fbab99f3fc4d574662020
parentb46059291736f78e7a86bb5bd1e91c9a6025113f (diff)
downloadgst-plugins-bad-8f70498c898a65d0938e3e104e91662ff5b693c3.tar.gz
gst-plugins-bad-8f70498c898a65d0938e3e104e91662ff5b693c3.tar.bz2
gst-plugins-bad-8f70498c898a65d0938e3e104e91662ff5b693c3.zip
resindvd: LPCM streams are only from 0xa0 to 0xaf.
Fix the same bug as the previous commit, but in resindvd's copy of mpegdemux.
-rw-r--r--ext/resindvd/gstmpegdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/resindvd/gstmpegdemux.c b/ext/resindvd/gstmpegdemux.c
index 281b13f3..5ab26107 100644
--- a/ext/resindvd/gstmpegdemux.c
+++ b/ext/resindvd/gstmpegdemux.c
@@ -1162,7 +1162,7 @@ gst_flups_demux_reset_psm (GstFluPSDemux * demux)
FILL_TYPE (0x40, 0x7f, -1);
FILL_TYPE (0x80, 0x87, ST_PS_AUDIO_AC3);
FILL_TYPE (0x88, 0x9f, ST_PS_AUDIO_DTS);
- FILL_TYPE (0xa0, 0xbf, ST_PS_AUDIO_LPCM);
+ FILL_TYPE (0xa0, 0xaf, ST_PS_AUDIO_LPCM);
FILL_TYPE (0xbd, 0xbd, -1);
FILL_TYPE (0xc0, 0xdf, ST_AUDIO_MPEG1);
FILL_TYPE (0xe0, 0xef, ST_GST_VIDEO_MPEG1_OR_2);