* video/readers/jpeg.c: Indented.
This commit is contained in:
parent
09ddcd11fb
commit
2bf61a980b
2 changed files with 46 additions and 42 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2010-05-05 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* video/readers/jpeg.c: Indented.
|
||||||
|
|
||||||
2010-05-05 Vladimir Serbinenko <phcoder@gmail.com>
|
2010-05-05 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Various jpeg cleanups.
|
Various jpeg cleanups.
|
||||||
|
|
|
@ -234,7 +234,8 @@ grub_jpeg_decode_quan_table (struct grub_jpeg_data *data)
|
||||||
next_marker = data->file->offset;
|
next_marker = data->file->offset;
|
||||||
next_marker += grub_jpeg_get_word (data);
|
next_marker += grub_jpeg_get_word (data);
|
||||||
|
|
||||||
while (data->file->offset + sizeof (data->quan_table[id]) + 1 <= next_marker)
|
while (data->file->offset + sizeof (data->quan_table[id]) + 1
|
||||||
|
<= next_marker)
|
||||||
{
|
{
|
||||||
id = grub_jpeg_get_byte (data);
|
id = grub_jpeg_get_byte (data);
|
||||||
if (id >= 0x10) /* Upper 4-bit is precision. */
|
if (id >= 0x10) /* Upper 4-bit is precision. */
|
||||||
|
@ -747,8 +748,7 @@ GRUB_MOD_INIT (jpeg)
|
||||||
grub_video_bitmap_reader_register (&jpeg_reader);
|
grub_video_bitmap_reader_register (&jpeg_reader);
|
||||||
#if defined(JPEG_DEBUG)
|
#if defined(JPEG_DEBUG)
|
||||||
cmd = grub_register_command ("jpegtest", grub_cmd_jpegtest,
|
cmd = grub_register_command ("jpegtest", grub_cmd_jpegtest,
|
||||||
"FILE",
|
"FILE", "Tests loading of JPEG bitmap.");
|
||||||
"Tests loading of JPEG bitmap.");
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue