summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2003-09-13 19:46:53 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2003-09-13 19:46:53 +0000
commitfc1d01f27ce1e142a1fed9166d516c71e61f1fa9 (patch)
treeacc5e5301a80c3f205d08db6a8c9319bb78695c5 /src
parent422e2c5e8e52c0d17d2852615830ce62d92e64f1 (diff)
downloadxine-lib-fc1d01f27ce1e142a1fed9166d516c71e61f1fa9.tar.gz
xine-lib-fc1d01f27ce1e142a1fed9166d516c71e61f1fa9.tar.bz2
Add comments so that people know where this sort of stream comes from.
CVS patchset: 5369 CVS date: 2003/09/13 19:46:53
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux_mpeg_pes.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/demuxers/demux_mpeg_pes.c b/src/demuxers/demux_mpeg_pes.c
index 7755c252a..6140c54ab 100644
--- a/src/demuxers/demux_mpeg_pes.c
+++ b/src/demuxers/demux_mpeg_pes.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_mpeg_pes.c,v 1.10 2003/09/13 00:49:07 jcdutton Exp $
+ * $Id: demux_mpeg_pes.c,v 1.11 2003/09/13 19:46:53 jcdutton Exp $
*
* demultiplexer for mpeg 2 PES (Packetized Elementary Streams)
* reads streams of variable blocksizes
@@ -889,7 +889,14 @@ static int32_t parse_private_stream_1(demux_mpeg_pes_t *this, uint8_t *p, buf_el
} else if((p[0]==0x0b) && (p[1]==0x77)) {
- /* A52/AC3 streams in some DVB broadcasts. */
+ /*
+ * A52/AC3 streams in some DVB-S recordings made with VDR.
+ * It is broadcast by a german tv-station called PRO7.
+ * PRO7 uses dolby 5.1 (A52 5.1) in some of the movies they broadcast,
+ * (and they would switch it to stereo-sound(A52 2.0) during commercials.)
+ * Here is the coresponding line from a channel.conf for the astra-satelite:
+ * Pro-7:12480:v:S19.2E:27500:255:256;257:32:0:898:0:0:0
+ */
buf->decoder_info[1] = 0; /* Number of frame headers */
buf->decoder_info[2] = 0; /* First access unit pointer */