Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
ac5806cb
Commit
ac5806cb
authored
Apr 06, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Telx: Remove trailing spaces
parent
0b6c9d7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/codec/telx.c
modules/codec/telx.c
+5
-5
No files found.
modules/codec/telx.c
View file @
ac5806cb
...
...
@@ -459,7 +459,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
{
uint8_t
*
packet
=
(
uint8_t
*
)
p_block
->
p_buffer
+
offset
;
// int vbi = ((0x20 & packet[2]) != 0 ? 0 : 313) + (0x1F & packet[2]);
// dbg((p_dec, "vbi %d header %02x %02x %02x\n", vbi, packet[0], packet[1], packet[2]));
if
(
packet
[
0
]
==
0xFF
)
continue
;
...
...
@@ -491,7 +491,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
/* row 0 : flags and header line */
int
flag
=
0
;
int
a
;
for
(
a
=
0
;
a
<
6
;
a
++
)
{
flag
|=
(
0xF
&
(
bytereverse
(
hamming_8_4
(
packet
[
8
+
a
])
)
>>
4
))
...
...
@@ -527,7 +527,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
(
1
&
(
flag
>>
18
))
?
" interrupt"
:
""
,
(
1
&
(
flag
>>
19
))
?
" inhibit"
:
""
,
(
1
&
(
flag
>>
20
))
));
if
(
(
p_sys
->
i_wanted_page
!=
-
1
&&
p_sys
->
i_page
[
magazine
]
!=
p_sys
->
i_wanted_page
)
||
!
p_sys
->
b_is_subtitle
[
magazine
]
)
...
...
@@ -546,7 +546,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
p_sys
->
b_erase
[
magazine
]
)
{
int
i
;
dbg
((
p_dec
,
"ERASE !
\n
"
));
p_sys
->
b_erase
[
magazine
]
=
0
;
...
...
@@ -691,7 +691,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
msg_Warn
(
p_dec
,
"can't get spu buffer"
);
goto
error
;
}
/* Create a new subpicture region */
video_format_Init
(
&
fmt
,
VLC_CODEC_TEXT
);
fmt
.
i_width
=
fmt
.
i_height
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment