gst/real/gstrealvideodec.c: Printf fix in debug statement; also print the right number there.
Original commit message from CVS: * gst/real/gstrealvideodec.c: (gst_real_video_dec_decode): Printf fix in debug statement; also print the right number there.
This commit is contained in:
parent
23c17776e7
commit
ff14de08d2
@ -1,3 +1,8 @@
|
|||||||
|
2007-06-06 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/real/gstrealvideodec.c: (gst_real_video_dec_decode):
|
||||||
|
Printf fix in debug statement; also print the right number there.
|
||||||
|
|
||||||
2007-06-06 Tim-Philipp Müller <tim at centricular dot net>
|
2007-06-06 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* ext/sdl/Makefile.am:
|
* ext/sdl/Makefile.am:
|
||||||
|
@ -409,8 +409,9 @@ too_many_fragments:
|
|||||||
{
|
{
|
||||||
gst_buffer_unref (in);
|
gst_buffer_unref (in);
|
||||||
GST_ELEMENT_ERROR (dec, STREAM, DECODE,
|
GST_ELEMENT_ERROR (dec, STREAM, DECODE,
|
||||||
("Got more fragments (%i) than can be handled (%i).",
|
("Got more fragments (%u) than can be handled (%u)",
|
||||||
dec->fragment_count, sizeof (dec->fragments)), (NULL));
|
dec->fragment_count, (guint) G_N_ELEMENTS (dec->fragments)),
|
||||||
|
(NULL));
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user