root/platform/a3300/sub/100a/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_viewport_live_fb
  7. vid_get_viewport_fb

   1 #include "platform.h"
   2 
   3 char *hook_raw_image_addr()   
   4 {
   5                 return (char*) 0x4207DB20;              //Found at FFB217F0 a3300is
   6         
   7 }
   8 
   9 char *hook_alt_raw_image_addr() 
  10 {
  11                 return (char*) 0x4207DB20;              //Found at FFB217F0
  12 }
  13 
  14 char *camera_jpeg_count_str()
  15 {
  16          return (void*)0xb40d4;   // Found @0xff9fd850   a3300is                                 
  17 }
  18 
  19 
  20 void *vid_get_bitmap_fb()
  21 {       
  22         return (void*)0x403f1000; // Found @0xff85b880 a3300is
  23 }                                  
  24 
  25 
  26 void *vid_get_viewport_fb_d()
  27 {
  28         return (void*)(*(int*)(0x29A0+0x58));     // FF8708C8 +  FF870DE0  a3300is         
  29 }
  30 
  31 
  32 
  33 void *vid_get_viewport_live_fb()
  34 {
  35         return (void*)(*(int*)(0x20D0+0x138));          //FF850CE8 + FF850D38   a3300is
  36 }
  37 
  38                  
  39 void *vid_get_viewport_fb()
  40 {       
  41         return (void*)0x40546b80;       // Found @0xffb1e2ac   a3300is          
  42 }
  43 

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