root/platform/d20/sub/100b/lib.c

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

DEFINITIONS

This source file includes following definitions.
  1. camera_jpeg_current_filename
  2. camera_jpeg_current_gps
  3. vid_get_viewport_fb_d
  4. camera_jpeg_count_str

   1 #include "platform.h"
   2 
   3 /*
   4 // camera has two raw buffers, see platform lib.c
   5 char *hook_raw_image_addr()     {return (char*) 0x4138AE00;}   //Found @0xff363310 d20 100b Search on JPEG BUFF
   6 */
   7 
   8 char *camera_jpeg_current_filename() {
   9      return (void*)0xBD06C;                 //0xFF1E2E88 search for  "%03d-%04d"
  10 }
  11 
  12 char *camera_jpeg_current_gps() {
  13     return (void*)0xBD0E0;
  14 }
  15 
  16 
  17 //Found by finsig d20 100b
  18 void *vid_get_viewport_fb_d()    { return (void*)(*(int*)(0x2c80+0x54)); } // Found @0xff05f434 & 0xff05f46c
  19 char *camera_jpeg_count_str()    { return (char*)0x000c0a08; }             // Found @0xff21bf70
  20 
  21 

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