summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_real.c
diff options
context:
space:
mode:
authorJames Stembridge <jstembridge@users.sourceforge.net>2004-02-03 21:20:04 +0000
committerJames Stembridge <jstembridge@users.sourceforge.net>2004-02-03 21:20:04 +0000
commitd5e1429776b6364288c809bb9bb825c36c3c1013 (patch)
tree5423cbd2d3d723afa2df540b8c4b827e5f44509c /src/demuxers/demux_real.c
parented3e1bd8cad1ceab0d020881abddcd99b3bcf733 (diff)
downloadxine-lib-d5e1429776b6364288c809bb9bb825c36c3c1013.tar.gz
xine-lib-d5e1429776b6364288c809bb9bb825c36c3c1013.tar.bz2
Send all of audio type specific data to decoder instead of skipping first 4 bytes
CVS patchset: 6113 CVS date: 2004/02/03 21:20:04
Diffstat (limited to 'src/demuxers/demux_real.c')
-rw-r--r--src/demuxers/demux_real.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/demuxers/demux_real.c b/src/demuxers/demux_real.c
index 834428a77..abc44365c 100644
--- a/src/demuxers/demux_real.c
+++ b/src/demuxers/demux_real.c
@@ -31,7 +31,7 @@
*
* Based on FFmpeg's libav/rm.c.
*
- * $Id: demux_real.c,v 1.90 2004/01/30 17:17:03 jstembridge Exp $
+ * $Id: demux_real.c,v 1.91 2004/02/03 21:20:04 jstembridge Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -737,11 +737,11 @@ unknown:
buf->decoder_info[2]);
} else {
- memcpy(buf->content, mdpr->type_specific_data + 4,
- mdpr->type_specific_len - 4);
+ memcpy(buf->content, mdpr->type_specific_data,
+ mdpr->type_specific_len);
buf->decoder_flags |= BUF_FLAG_HEADER;
- buf->size = mdpr->type_specific_len - 4;
+ buf->size = mdpr->type_specific_len;
}
this->audio_fifo->put (this->audio_fifo, buf);