Commit 5b451683 authored by Davis King's avatar Davis King

Minor changes to suppress compiler warnings in gcc

parent a0f078d9
...@@ -338,7 +338,7 @@ compress_first_pass (j_compress_ptr cinfo, JSAMPIMAGE input_buf) ...@@ -338,7 +338,7 @@ compress_first_pass (j_compress_ptr cinfo, JSAMPIMAGE input_buf)
*/ */
METHODDEF(int) METHODDEF(int)
compress_output (j_compress_ptr cinfo, JSAMPIMAGE input_buf) compress_output (j_compress_ptr cinfo, JSAMPIMAGE )//input_buf)
{ {
my_coef_ptr coef = (my_coef_ptr) cinfo->coef; my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
JDIMENSION MCU_col_num; /* index of current MCU within row */ JDIMENSION MCU_col_num; /* index of current MCU within row */
......
...@@ -338,7 +338,7 @@ null_convert (j_compress_ptr cinfo, ...@@ -338,7 +338,7 @@ null_convert (j_compress_ptr cinfo,
*/ */
METHODDEF(void) METHODDEF(void)
null_method (j_compress_ptr cinfo) null_method (j_compress_ptr )//cinfo)
{ {
/* no work needed */ /* no work needed */
} }
......
...@@ -219,7 +219,7 @@ emit_dht (j_compress_ptr cinfo, int index, int is_ac) ...@@ -219,7 +219,7 @@ emit_dht (j_compress_ptr cinfo, int index, int is_ac)
LOCAL(void) LOCAL(void)
emit_dac (j_compress_ptr cinfo) emit_dac (j_compress_ptr )//cinfo)
/* Emit a DAC marker */ /* Emit a DAC marker */
/* Since the useful info is so small, we want to emit all the tables in */ /* Since the useful info is so small, we want to emit all the tables in */
/* one DAC marker. Therefore this routine does its own scan of the table. */ /* one DAC marker. Therefore this routine does its own scan of the table. */
......
...@@ -72,7 +72,7 @@ typedef my_downsampler * my_downsample_ptr; ...@@ -72,7 +72,7 @@ typedef my_downsampler * my_downsample_ptr;
*/ */
METHODDEF(void) METHODDEF(void)
start_pass_downsample (j_compress_ptr cinfo) start_pass_downsample (j_compress_ptr )//cinfo)
{ {
/* no work for now */ /* no work for now */
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment