mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
ext/jpeg/gstjpegdec.c: Fix crash when outputting debugging information for certain pictures (always good to use the r...
Original commit message from CVS: * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): Fix crash when outputting debugging information for certain pictures (always good to use the right struct member for the number of records in an array).
This commit is contained in:
parent
14ea3f13a4
commit
d35441766f
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
|
||||
Fix crash when outputting debugging information for certain
|
||||
pictures (always good to use the right struct member for
|
||||
the number of records in an array).
|
||||
|
||||
2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
Patch by: Jindrich Makovicka <jindrich.makivicka at itonis tv>
|
||||
|
|
|
@ -774,7 +774,7 @@ gst_jpeg_dec_chain (GstPad * pad, GstBuffer * buf)
|
|||
|
||||
GST_DEBUG ("num_components=%d, comps_in_scan=%d\n",
|
||||
dec->cinfo.num_components, dec->cinfo.comps_in_scan);
|
||||
for (i = 0; i < dec->cinfo.num_components; ++i) {
|
||||
for (i = 0; i < dec->cinfo.comps_in_scan; ++i) {
|
||||
GST_DEBUG ("[%d] h_samp_factor=%d, v_samp_factor=%d\n", i,
|
||||
dec->cinfo.cur_comp_info[i]->h_samp_factor,
|
||||
dec->cinfo.cur_comp_info[i]->v_samp_factor);
|
||||
|
|
Loading…
Reference in a new issue