Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increase default tuning timeout to "-t2" #52

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ChangeLog:
--------------------

[next]
- increase default tuning timeout to "-t2"

[1.0.15] 2024-01-02
- VLC output: include logical channel numbers (LCN) in titles, when available
Expand Down
6 changes: 3 additions & 3 deletions src/scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ struct w_scan_flags flags = {
ATSC_VSB, // default for ATSC scan
0, // need 2nd generation frontend
DE, // country index or sat index
1, // tuning speed {1 = fast, 2 = medium, 3 = slow}
2, // tuning speed {1 = fast, 2 = medium, 3 = slow}
0, // filter timeout {0 = default, 1 = long}
1, // get_other_nits, atm always
1, // add_frequencies, atm always
Expand Down Expand Up @@ -3957,8 +3957,8 @@ static const char *ext_opts = "%s expert help\n"
" use long filter timeout\n"
" -t N, --lock-timeout N\n"
" tuning timeout\n"
" 1 = fastest [default]\n"
" 2 = medium\n"
" 1 = fastest\n"
" 2 = medium [default]\n"
" 3 = slowest\n"
".................DVB-C...................\n"
" -i N, --inversion N\n"
Expand Down
Loading