# HG changeset patch # User vitor # Date 1266664967 0 # Node ID e346e10c9537218c6e9af615f9433d23a760aeef # Parent 7539c21106ef55027f258b03f61d447cc1151e00 Do not leave uninitialized data in the packet in MPC demuxer. Should allow for adding a demuxer test to FATE. diff -r 7539c21106ef -r e346e10c9537 mpc.c --- a/mpc.c Fri Feb 19 23:23:40 2010 +0000 +++ b/mpc.c Sat Feb 20 11:22:47 2010 +0000 @@ -170,6 +170,8 @@ pkt->data[0] = curbits; pkt->data[1] = (c->curframe > c->fcount); + pkt->data[2] = 0; + pkt->data[3] = 0; pkt->stream_index = 0; pkt->pts = cur;