[Mplayer-cvslog] CVS: main/libmpdemux demuxer.h,1.42,1.43
Arpi of Ize
arpi at mplayerhq.hu
Sun Aug 4 02:16:01 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main/DOCS bugreports.html,1.32,1.33 cd-dvd.html,1.33,1.34 codecs-in.html,1.7,1.8 codecs.html,1.73,1.74 documentation.html,1.280,1.281 encoding.html,1.51,1.52 faq.html,1.98,1.99 formats.html,1.36,1.37 skin-en.html,1.6,1.7 sound.html,1.42,1.43 users_against_developers.html,1.24,1.25 video.html,1.84,1.85
- Next message: [Mplayer-cvslog] CVS: main/libmpdemux demux_avi.c,1.42,1.43
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv10004
Modified Files:
demuxer.h
Log Message:
new_demux_packet: allocate 8 bytes too much
Index: demuxer.h
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demuxer.h,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- demuxer.h 2 Aug 2002 17:44:16 -0000 1.42
+++ demuxer.h 4 Aug 2002 00:15:58 -0000 1.43
@@ -125,7 +125,7 @@
inline static demux_packet_t* new_demux_packet(int len){
demux_packet_t* dp=malloc(sizeof(demux_packet_t));
dp->len=len;
- dp->buffer=len?malloc(len):NULL;
+ dp->buffer=len?malloc(len+8):NULL;
dp->next=NULL;
dp->pts=0;
dp->pos=0;
- Previous message: [Mplayer-cvslog] CVS: main/DOCS bugreports.html,1.32,1.33 cd-dvd.html,1.33,1.34 codecs-in.html,1.7,1.8 codecs.html,1.73,1.74 documentation.html,1.280,1.281 encoding.html,1.51,1.52 faq.html,1.98,1.99 formats.html,1.36,1.37 skin-en.html,1.6,1.7 sound.html,1.42,1.43 users_against_developers.html,1.24,1.25 video.html,1.84,1.85
- Next message: [Mplayer-cvslog] CVS: main/libmpdemux demux_avi.c,1.42,1.43
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list