diff --git a/ChangeLog b/ChangeLog index d14a2ad756..626c3b13ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-06-05 Sebastien Moutte + + * win32/MANIFEST: + Add a manifest for futures ugly win32 releases. + * gst/iec958/ac3iec.c: (ac3iec_chain_raw): + Move bufcaps declaration at the begining of the instructions + block. + 2006-06-02 Stefan Kost * ext/a52dec/gsta52dec.h: diff --git a/common b/common index 80b4e2c087..4282dfa89d 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 80b4e2c08717159760ebaa40715f8919b3f77ba9 +Subproject commit 4282dfa89d50e80f59d4e1837af95fbf74e75d18 diff --git a/gst/iec958/ac3iec.c b/gst/iec958/ac3iec.c index b49702fb97..ebe3a31c3d 100644 --- a/gst/iec958/ac3iec.c +++ b/gst/iec958/ac3iec.c @@ -350,6 +350,8 @@ ac3iec_chain_raw (GstPad * pad, GstBuffer * buf) event = ac3p_parse (ac3iec->padder); while (event != AC3P_EVENT_PUSH) { if (event == AC3P_EVENT_FRAME) { + GstCaps *bufcaps = NULL; + if (ac3iec->caps == NULL) { gint rate = ac3iec->padder->rate; @@ -366,7 +368,7 @@ ac3iec_chain_raw (GstPad * pad, GstBuffer * buf) } /* We have a new frame: */ - GstCaps *bufcaps = GST_PAD_CAPS (ac3iec->src); + bufcaps = GST_PAD_CAPS (ac3iec->src); /* Create a new buffer, and copy the frame data into it. */ ret = diff --git a/win32/MANIFEST b/win32/MANIFEST new file mode 100644 index 0000000000..bedaed32c6 --- /dev/null +++ b/win32/MANIFEST @@ -0,0 +1,14 @@ +win32/MANIFEST +win32/common/config.h +win32/vs6/gst_plugins_ugly.dsw +win32/vs6/libgstac3parse.dsp +win32/vs6/libgstasfdemux.dsp +win32/vs6/libgstdvdlpcmdec.dsp +win32/vs6/libgstdvdsub.dsp +win32/vs6/libgstiec958.dsp +win32/vs6/libgstlame.dsp +win32/vs6/libgstmad.dsp +win32/vs6/libgstmpegaudioparse.dsp +win32/vs6/libgstmpegstream.dsp +win32/vs6/libgstrealmedia.dsp +win32/vs6/libgstsynaesthesia.dsp \ No newline at end of file