Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bitstream
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
bitstream
Compare revisions
dcb62334b441c2d8dbeb256d8ebc2b7353c9a503 to c76e08a1ecd005cceca0f6f6e7ee8f16b0d77e68
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
videolan/bitstream
Select target project
No results found
c76e08a1ecd005cceca0f6f6e7ee8f16b0d77e68
Select Git revision
Branches
master
Tags
1.0
1.1
1.2
1.3
1.4
Swap
Target
videolan/bitstream
Select target project
videolan/bitstream
funman/bitstream
kwizart/bitstream
sammirata/bitstream
alexandre-janniaux/bitstream
mihulet88/bitstream
Oxgonz77/bitstream
CymGen30/bitstream
kierank/bitstream
tmatth/bitstream
ePirat/bitstream
jdek/bitstream
ddodi6930/bitstream
jd_obs/bitstream
abmmad22/bitstream
Rtytry/bitstream
andresdelpueblesito/bitstream
ErickNance/bitstream
mich181189/bitstream
19 results
dcb62334b441c2d8dbeb256d8ebc2b7353c9a503
Select Git revision
Branches
master
Tags
1.0
1.1
1.2
1.3
1.4
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
dvb/si/desc_58: fix printf format for time_t
· 96af36eb
Clément Vasseur
authored
8 months ago
96af36eb
Merge branch 'nto-printf-time'
· c76e08a1
Christophe Massiot
authored
8 months ago
c76e08a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dvb/si/desc_58.h
+4
-4
4 additions, 4 deletions
dvb/si/desc_58.h
with
4 additions
and
4 deletions
dvb/si/desc_58.h
View file @
c76e08a1
...
...
@@ -156,26 +156,26 @@ static inline void desc58_print(uint8_t *p_desc, f_print pf_print,
case
PRINT_XML
:
pf_print
(
opaque
,
"<LOCAL_TIME_OFFSET_DESC country_code=
\"
%3.3s
\"
country_region_id=
\"
%u
\"
"
" lto_polarity=
\"
%u
\"
lt_offset=
\"
%04x
\"
time_of_change=
\"
%
ld
\"
"
" lto_polarity=
\"
%u
\"
lt_offset=
\"
%04x
\"
time_of_change=
\"
%
.f
\"
"
" time_of_change_dec=
\"
%s
\"
next_time_offset=
\"
%04x
\"
/>"
,
(
const
char
*
)
desc58n_get_country_code
(
p_desc_n
),
desc58n_get_country_region_id
(
p_desc_n
),
desc58n_get_lto_polarity
(
p_desc_n
),
desc58n_get_lt_offset
(
p_desc_n
),
ts_time_of_change
,
txt_time_of_change
,
difftime
(
ts_time_of_change
,
0
),
txt_time_of_change
,
desc58n_get_next_offset
(
p_desc_n
)
);
break
;
default:
pf_print
(
opaque
,
" - desc 58 local_time_offset country_code=%3.3s country_region_id=%u"
" lto_polarity=%u lto_offset=%04x time_of_change=%
ld
"
" lto_polarity=%u lto_offset=%04x time_of_change=%
.f
"
" time_of_change_dec=
\"
%s
\"
next_time_offset=%04x"
,
(
const
char
*
)
desc58n_get_country_code
(
p_desc_n
),
desc58n_get_country_region_id
(
p_desc_n
),
desc58n_get_lto_polarity
(
p_desc_n
),
desc58n_get_lt_offset
(
p_desc_n
),
ts_time_of_change
,
txt_time_of_change
,
difftime
(
ts_time_of_change
,
0
),
txt_time_of_change
,
desc58n_get_next_offset
(
p_desc_n
)
);
}
...
...
This diff is collapsed.
Click to expand it.