root/platform/a3200/sub/100d/lib.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. hook_raw_image_addr
  2. hook_alt_raw_image_addr
  3. camera_jpeg_count_str
  4. vid_get_bitmap_fb
  5. vid_get_viewport_fb_d
  6. vid_get_bitmap_active_buffer

   1 #include "platform.h"
   2 
   3 char *hook_raw_image_addr()
   4 {
   5                 return (char*) 0x421316C0;              //Found at FFB210A4 a3200is
   6 }
   7 
   8 char *hook_alt_raw_image_addr() 
   9 {
  10                 return (char*) 0x421316C0;              //Found at FFB210A4 a3200is
  11 }
  12 
  13 char *camera_jpeg_count_str()
  14 {
  15          return (void*)0x000b44d4;   // Found @0xff9fd22c   a3200is
  16 }
  17 
  18 
  19 void *vid_get_bitmap_fb()
  20 {       
  21         return (void*)0x403f1000; // Found @0xff85b834 a3200is
  22 }                                  
  23 
  24 
  25 void *vid_get_viewport_fb_d()
  26 {
  27         return (void*)(*(int*)(0x29A0+0x58));     // FF871340 + FF871378  a3200is
  28 }
  29 
  30 
  31 void *vid_get_bitmap_active_buffer()
  32 {
  33     return (void*)(*(int*)(0x5680+0x18)); //found @ 0xff9152d4 a3200 100d, same in 100a
  34 }

/* [<][>][^][v][top][bottom][index][help] */