search for: scan_list

Displaying 4 results from an estimated 4 matches for "scan_list".

Did you mean: cap_list
2007 Apr 17
0
8 commits - configure.ac doc/Makefile.am libswfdec/jpeg libswfdec/swfdec_debug.h libswfdec/swfdec_image.c
...mponent_id); - - h_subsample = dec->components[index].h_oversample; - v_subsample = dec->components[index].v_oversample; - quant_index = dec->components[index].quant_table; - - for (y = 0; y < v_subsample; y++) { - for (x = 0; x < h_subsample; x++) { - dec->scan_list[n].component_index = index; - dec->scan_list[n].dc_table = dc_table; - dec->scan_list[n].ac_table = ac_table; - dec->scan_list[n].quant_table = quant_index; - dec->scan_list[n].x = x; - dec->scan_list[n].y = y; - dec->scan_list[n].offset =...
2007 Apr 18
2
libswfdec/jpeg
libswfdec/jpeg/jpeg_rgb_decoder.c | 1 - 1 files changed, 1 deletion(-) New commits: diff-tree 15ed4a69b4ffc265fe103ba79a0b60af7e42a9fa (from 2073f39bc0b0aa90f1f67def9bb3f0c6b68018ae) Author: Benjamin Otte <otte@gnome.org> Date: Wed Apr 18 10:47:06 2007 +0200 remove leftover debugging statement diff --git a/libswfdec/jpeg/jpeg_rgb_decoder.c b/libswfdec/jpeg/jpeg_rgb_decoder.c
2007 Jul 21
0
12 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/jpeg libswfdec/swfdec_as_array.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_player.c libswfdec/swfdec_player.h libswfdec/swfdec_player_internal.h
...mponents[index].quant_table; + h_subsample = dec->components[idx].h_sample; + v_subsample = dec->components[idx].v_sample; + quant_index = dec->components[idx].quant_table; for (y = 0; y < v_subsample; y++) { for (x = 0; x < h_subsample; x++) { - dec->scan_list[n].component_index = index; + dec->scan_list[n].component_index = idx; dec->scan_list[n].dc_table = dc_table; dec->scan_list[n].ac_table = ac_table; dec->scan_list[n].quant_table = quant_index; dec->scan_list[n].x = x; dec->scan_...
2007 Feb 13
0
libswfdec/jpeg libswfdec/swfdec_image.c
...jpeg_decoder_sos (JpegDecoder * dec, bit syncbits (bits); - JPEG_DEBUG ("component %d: index=%d dc_table=%d ac_table=%d n=%d", + OIL_DEBUG ("component %d: index=%d dc_table=%d ac_table=%d n=%d", component_id, index, dc_table, ac_table, n); } dec->scan_list_length = n; spectral_start = get_u8 (bits); spectral_end = get_u8 (bits); - JPEG_DEBUG ("spectral range [%d,%d]", spectral_start, spectral_end); + OIL_DEBUG ("spectral range [%d,%d]", spectral_start, spectral_end); approx_high = getbits (bits, 4); approx_low = ge...