We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3f17df commit 0ecbdd3Copy full SHA for 0ecbdd3
1 file changed
src/rust/lib_ccxr/src/teletext.rs
@@ -1004,16 +1004,8 @@ impl<'a> TeletextContext<'a> {
1004
let mut line_count: u8 = 0;
1005
let mut time_reported = false;
1006
// Negative timestamps occur with wrap-around/uninitialized PTS in broadcast captures
1007
- let timecode_show = self
1008
- .page_buffer
1009
- .show_timestamp
1010
- .to_srt_time()
1011
- .ok()?;
1012
- let timecode_hide = self
1013
1014
- .hide_timestamp
1015
1016
+ let timecode_show = self.page_buffer.show_timestamp.to_srt_time().ok()?;
+ let timecode_hide = self.page_buffer.hide_timestamp.to_srt_time().ok()?;
1017
1018
// process data
1019
for row in 1..25 {
0 commit comments