Sony Ericsson / Sony : Software, Firmware and Drivers : All about camdriver modding (for modders)
>
New Topic
>
Reply<
Esato Forum Index
>
Sony Ericsson / Sony >
Software, Firmware and Drivers
> All about camdriver modding (for modders)
Bookmark topic
could this be used in the k800i, k800i has CHANGE_MODE, so it should work.
--
Posted: 2008-03-05 13:56:03
Edit :
Quote
i don't know, you can try
--
Posted: 2008-03-05 14:05:35
Edit :
Quote
i'll try it later
--
Posted: 2008-03-05 14:30:32
Edit :
Quote
How can i change jpeg header to add some value to exif? i've seen that "Model" in exif data can be changed.
another question, when camera will take picture it'll read the camdriver for instructions, but after taking and saving pic will it read camdriver from beginning?(i mean, will it read seq_init again?)
yet another question, i used this code for linear zoom:
Code:
seq_set_prop_6 = $s4 %0 $c4 0a $s5 00 $cl $s5 64 $<5 3 $<4 4 $-5 r4 $/5 0a $cx
$+5 80 #COM_EVENT(61,$w5);
but it works when ambient light is low, it won't work in outdoor, why?
--
Posted: 2008-03-05 15:01:25
Edit :
Quote
1. nobody knows this, only SE engineers
2. no
3. as for me seq_set_prop_6 is entirely dead in normal camera work. it is refreshed after snapshot (i don't remember). it is used in VideoTelephony after switch from front to back camera
_________________
K800 R1KG001 (camdriver 6.1)
raider.4shared.com
flickr.com/photos/raiderek
[ This Message was edited by: Raiderski on 2008-03-05 15:07 ]
--
Posted: 2008-03-05 16:06:44
Edit :
Quote
i changed the phone name in my exif data, it's not done in the driver it requires a customize_upgrade.xml script, it changes the name of your phone.
--
Posted: 2008-03-05 16:11:29
Edit :
Quote
Thanks for replies.
--
Posted: 2008-03-05 17:09:55
Edit :
Quote
are these post-processing things really needed???
//**************************************************
// Contrast, property 20 ****
//**************************************************
// 0 => -8 ... 8 => 0 ... 17 => 8
//-------------------------------------------------
seq_set_prop_14 = $s5 %0
$-5 08
#COM_EVENT(55,$w5);
//**************************************************
// Sharpening, property 21 ****
//**************************************************
// 0 => -8 ... 8 => 0 ... 17 => 8
//-------------------------------------------------
seq_set_prop_15 = $s5 %0
$-5 08
#COM_EVENT(56,$w5);
i erased them from the driver it seems to make no difference
--
Posted: 2008-03-05 17:57:45
Edit :
Quote
Code://============ JPEG HEADER CREATION ==============
//================================================
//
// Same header as in clara with the difference that
// restart is added.
//
jpeg_qtable_selector_0=$s2 00 #READ_REG(26, $r2 0 0);
jpeg_qtable_selector_1=$s2 01 #READ_REG(26, $r2 0 0); //changed from 1a
jpeg_qtable_0=10 0B 0C 0E 0C 0A 10 0E
;
jpeg_qtable_1=11 12 12 18 15 18 2F 1A
;
jpeg_qtable_factors =
jpeg_header= FF D8
;
i use this and it`s all right
also this in t650`s driver
Code:
// Digital Sharpening, property 21
//
// 0 => Off 1 => +1 1 => +2 1 => +3
// 4 => +4 5 => +5 6 => Auto
//**************************************************
seq_set_prop_15_0 = #WR_REG(21, 80);
seq_set_prop_15_1 = #WR_REG(21, 00);
seq_set_prop_15_2 = #WR_REG(21, 01);
seq_set_prop_15_3 = #WR_REG(21, 02);
seq_set_prop_15_4 = #WR_REG(21, 03);
seq_set_prop_15_5 = #WR_REG(21, 04);
seq_set_prop_15_6 = #WR_REG(21, 40);
40 is auto ? i will try on my k800 just for fun
--
Posted: 2008-03-05 18:30:01
Edit :
Quote
many things in code are useless, they were used only during driver creation process
--
Posted: 2008-03-05 18:38:53
Edit :
Quote
New Topic
Reply