]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
oops merge error v1.2.2
authorKen Rice <krice@freeswitch.org>
Tue, 11 Sep 2012 18:59:17 +0000 (14:59 -0400)
committerKen Rice <krice@freeswitch.org>
Tue, 11 Sep 2012 18:59:17 +0000 (14:59 -0400)
libs/spandsp/src/t42.c

index 30127cb3b346fc53e05e5b219f24cc59beef2bd0..0163ff52f5d5547b3e4aa8e1c8377a705a82f0e2 100644 (file)
@@ -1030,11 +1030,7 @@ SPAN_DECLARE(int) t42_itulab_to_itulab(logging_state_t *logging, tdata_t *dst, t
 
     for (pos = 0;  pos < srclen;  pos += compressor.image_width*compressor.num_components)
     {
-<<<<<<< HEAD
         scan_line_in = (JSAMPROW) src + pos;
-=======
-        scan_line_in = (JSAMPROW)src + pos;
->>>>>>> FS-4504 vs2010 only -  plus mod_sofia fix - anybody want to help with 2008
         jpeg_write_scanlines(&compressor, &scan_line_in, 1);
     }
 
@@ -1151,11 +1147,7 @@ SPAN_DECLARE(int) t42_itulab_to_srgb(logging_state_t *logging, lab_params_t *s,
 
     for (pos = 0;  decompressor.output_scanline < decompressor.output_height;  pos += decompressor.output_width*decompressor.num_components)
     {
-<<<<<<< HEAD
         scan_line_out = (JSAMPROW) dst + pos;
-=======
-        scan_line_out = (JSAMPROW)dst + pos;
->>>>>>> FS-4504 vs2010 only -  plus mod_sofia fix - anybody want to help with 2008
         jpeg_read_scanlines(&decompressor, &scan_line_in, 1);
         lab_to_srgb(s, scan_line_out, scan_line_in, decompressor.output_width);
     }