aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2007-09-21 23:08:01 +0000
committerRichard M. Stallman2007-09-21 23:08:01 +0000
commit867a0d72ea3718115387d0894615c878560fe4d9 (patch)
tree600e1cd367277511b834c1d81b9ea33a1aabd6b5 /src
parent0681b95814d50249df67fd8647b3bed9c4ca77a4 (diff)
downloademacs-867a0d72ea3718115387d0894615c878560fe4d9.tar.gz
emacs-867a0d72ea3718115387d0894615c878560fe4d9.zip
(our_memory_buffer): Renamed from omfib_buffer.
Diffstat (limited to 'src')
-rw-r--r--src/image.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/image.c b/src/image.c
index d8b16d832e3..1b024e5c1d5 100644
--- a/src/image.c
+++ b/src/image.c
@@ -6769,7 +6769,7 @@ our_common_term_source (cinfo)
6769 whenever more data is needed. We read the whole image in one step, 6769 whenever more data is needed. We read the whole image in one step,
6770 so this only adds a fake end of input marker at the end. */ 6770 so this only adds a fake end of input marker at the end. */
6771 6771
6772static JOCTET omfib_buffer[2]; 6772static JOCTET our_memory_buffer[2];
6773 6773
6774static boolean 6774static boolean
6775our_memory_fill_input_buffer (cinfo) 6775our_memory_fill_input_buffer (cinfo)
@@ -6778,10 +6778,10 @@ our_memory_fill_input_buffer (cinfo)
6778 /* Insert a fake EOI marker. */ 6778 /* Insert a fake EOI marker. */
6779 struct jpeg_source_mgr *src = cinfo->src; 6779 struct jpeg_source_mgr *src = cinfo->src;
6780 6780
6781 omfib_buffer[0] = (JOCTET) 0xFF; 6781 our_memory_buffer[0] = (JOCTET) 0xFF;
6782 omfib_buffer[1] = (JOCTET) JPEG_EOI; 6782 our_memory_buffer[1] = (JOCTET) JPEG_EOI;
6783 6783
6784 src->next_input_byte = omfib_buffer; 6784 src->next_input_byte = our_memory_buffer;
6785 src->bytes_in_buffer = 2; 6785 src->bytes_in_buffer = 2;
6786 return 1; 6786 return 1;
6787} 6787}