diff --git a/ChangeLog b/ChangeLog index b1233ad334..5dd00a5648 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2005-01-06 Stephane LOEUILLET + + * gst/asfdemux/gstasfdemux.c: + (gst_asf_demux_process_ext_content_desc): + Extract TrackNumber metadata + clean up code + + * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle): + Hope this is the good fix (var used unitialised) + 2005-01-06 Ronald S. Bultje * ext/faad/gstfaad.c: (gst_faad_chain): diff --git a/gst/games/gstvideoimage.c b/gst/games/gstvideoimage.c index 317ae3f8ab..7e3436f01e 100644 --- a/gst/games/gstvideoimage.c +++ b/gst/games/gstvideoimage.c @@ -265,7 +265,7 @@ gst_video_image_draw_rectangle (GstVideoImage * image, gint x, gint y, } } else { h--; - image->format->paint_hline (image, x, i, w, c); + image->format->paint_hline (image, x, y, w, c); for (i = 1; i < h; i++) { image->format->paint_hline (image, x, y + i, 1, c); image->format->paint_hline (image, x + w - 1, y + i, 1, c);