root/platform/a470/sub/102c/lib.c

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

DEFINITIONS

This source file includes following definitions.
  1. vid_get_viewport_live_fb
  2. vid_get_viewport_fb_d
  3. camera_jpeg_count_str

   1 #include "platform.h"
   2 
   3 void *vid_get_viewport_live_fb()
   4 {
   5     return (void*)0; // Fast MD not implemented
   6 }
   7 
   8 void *vid_get_viewport_fb_d()
   9 {
  10     //return (void*)(*(int*)0x5228);  // same as 100e, eg FFC44B58
  11         // http://chdk.setepontos.com/index.php/topic,2361.msg27125.html#msg27125
  12         // sub_FFC45328
  13         return (void*)(*(int*)(0x50A4+0x4C));  //might wanna check this, found above ImagePlayer.c
  14 }
  15 
  16 char *camera_jpeg_count_str()
  17 {
  18     return (char*)0x49A80; // found above a9999
  19 }

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