see http://imageshack.us/photo/my-images/443/73569858oa.jpg/ up image is after patch bottom image is before patch on my 16:9 monitor i am not see title channel, time and volume, because is hidden in 16:9 or 16:10 mode. this patch fixed it. for 16:10 monitors you may changed some digest in this file. add this patch as flag USE ("fix_osd_for_16_9_monitors") for tvtime ebuild. --- src/tvtime.c 2011-11-10 20:23:34.000000000 +0400 +++ src/tvtime.c 2011-11-10 20:23:45.000000000 +0400 @@ -1201,10 +1201,10 @@ deinterlace_method_t *curmethod; int curmethodid; int matte_x = 0; - int matte_w = 0; - int matte_y = 0; - int matte_h = 0; - int matte_mode = 0; + int matte_w = 720; + int matte_y = 72; /* for 16:9 = 72 ; for 16:10 = 48 */ + int matte_h = 432; /* for 16:9 = 432 ; for 16:10 = 480 */ + int matte_mode = 1; /* for 16:9 = 1 ; for 16:10 = 2 */ int restarttvtime = 0; int return_value = 0; int last_current_id = -1; @@ -1581,6 +1581,9 @@ build_fspos_menu( commands_get_menu( commands, "fspos" ), config_get_fullscreen_position( ct ) ); + output->set_matte( 720, 432 ); /* for 16:9 = ( 720, 432 ) ; for 16:10 = ( 720, 480 ) */ + output->set_window_height( output->get_visible_height() ); + /* Initialize our timestamps. */ for(;;) { const char *fifo_args = 0; --- src/tvtimeosd.c 2011-11-10 20:21:35.000000000 +0400 +++ src/tvtimeosd.c 2011-11-10 20:20:55.000000000 +0400 @@ -141,7 +141,7 @@ unsigned int other_b; }; -const int top_size = 7; +const int top_size = 14; const int left_size = 7; const int left_inner_size = 10; const int bottom_size = 13; Reproducible: Always Steps to Reproduce: start tvtime is : tvtime --window & sleep 1.5 && tvtime-command SET_MATTE 16:9 AUTO_ADJUST_WINDOW or start tvtime and press "Insert" key for 16:9 mode screen.
Created attachment 292269 [details, diff] tvtime-16-9.patch patch
Created attachment 292469 [details, diff] new patch
+ output->set_matte( 720, 432 ); /* for 16:9 = ( 720, 432 ) ; for 16:10 = ( 720, 480 ) */ right to: + output->set_matte( 768, 432 ); /* for 16:9 = ( 768, 432 ) ; for 16:10 = ( 768, 480 ) */
Created attachment 292575 [details, diff] sorry guys, it is better version of patch. Now saving value "Matte" in config and working "Overscan"
Created attachment 345024 [details] no problems here using that program for years now. Never had anything like it?
Created attachment 345030 [details] this screenshot of tvtime with apply this patch If tv ratio is 16:9 Image is not compressed vertically. Tvtime window's frame without black bars and resized. Info messages puts on the screen, but not on black bars. markus wolff You image is compressed vertically. You can do as well as I have in the screenshot? this patch do Image is not compressed vertically.
Created attachment 345838 [details] osd hiding problem after finding out what all this could mean... i could reproduce it and found the patch working. off topic, but...which genius called that "matte" ? isn't that function not usually referred as "aspect-ratio"? likewise "16:9 output" -> widescreen
since the issue is fixed... Vasiliy...can you perhaps set this to resolved? or who can?
Created attachment 346400 [details] 4:3 matte. (with my patch)
Created attachment 346402 [details] 16:9 matte. (with my patch)
which genius called that "matte" ? see these two are screenshots 4:3 matte. (with my patch) and 16:9 matte. (with my patch) or press key "Insert" to change matte
media-tv/tvtime was removed from portage wrt bug #424289