1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 15:34:57 -04:00

ATV Modulator: factorize vsync code. Use standard sync pulses at start of equalizing lines. New frame rates and number of lines

This commit is contained in:
f4exb
2017-04-03 17:23:20 +02:00
parent efad6f948c
commit 64b09910fd
3 changed files with 134 additions and 92 deletions
+18
View File
@@ -276,6 +276,18 @@ int ATVModGUI::getNbLines()
case 2:
return 405;
break;
case 3:
return 343;
break;
case 4:
return 240;
break;
case 5:
return 180;
break;
case 6:
return 90;
break;
case 0:
default:
return 625;
@@ -296,6 +308,12 @@ int ATVModGUI::getFPS()
case 3:
return 16;
break;
case 4:
return 12;
break;
case 5:
return 10;
break;
case 1:
default:
return 25;