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
d6e9d55a
Commit
d6e9d55a
authored
Apr 22, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup
parent
eca6989d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
12 deletions
+6
-12
modules/codec/zvbi.c
modules/codec/zvbi.c
+6
-12
No files found.
modules/codec/zvbi.c
View file @
d6e9d55a
...
...
@@ -122,10 +122,10 @@ vlc_module_end();
struct
decoder_sys_t
{
vbi_decoder
*
p_vbi_dec
;
vbi_dvb_demux
*
p_dvb_demux
;
unsigned
int
i_wanted_page
;
unsigned
int
i_last_page
;
vbi_decoder
*
p_vbi_dec
;
vbi_dvb_demux
*
p_dvb_demux
;
unsigned
int
i_wanted_page
;
unsigned
int
i_last_page
;
bool
b_update
;
bool
b_opaque
;
...
...
@@ -133,11 +133,11 @@ struct decoder_sys_t
bool
b_text
;
/* Positioning of Teletext images */
int
i_align
;
int
i_align
;
/* Misc */
#if defined(HAVE_FFMPEG_SWSCALE_H) || defined(HAVE_LIBSWSCALE_SWSCALE_H) || defined(HAVE_LIBSWSCALE_TREE)
image_handler_t
*
p_image
;
image_handler_t
*
p_image
;
#endif
};
...
...
@@ -168,17 +168,12 @@ static int Open( vlc_object_t *p_this )
decoder_sys_t
*
p_sys
=
NULL
;
if
(
p_dec
->
fmt_in
.
i_codec
!=
VLC_FOURCC
(
't'
,
'e'
,
'l'
,
'x'
)
)
{
return
VLC_EGENERIC
;
}
p_dec
->
pf_decode_sub
=
Decode
;
p_sys
=
p_dec
->
p_sys
=
malloc
(
sizeof
(
decoder_sys_t
)
);
if
(
p_sys
==
NULL
)
{
msg_Err
(
p_dec
,
"out of memory"
);
return
VLC_ENOMEM
;
}
memset
(
p_sys
,
0
,
sizeof
(
decoder_sys_t
)
);
#if defined(HAVE_FFMPEG_SWSCALE_H) || defined(HAVE_LIBSWSCALE_SWSCALE_H) || defined(HAVE_LIBSWSCALE_TREE)
...
...
@@ -186,7 +181,6 @@ static int Open( vlc_object_t *p_this )
if
(
!
p_sys
->
p_image
)
{
free
(
p_sys
);
msg_Err
(
p_dec
,
"out of memory"
);
return
VLC_ENOMEM
;
}
#endif
...
...
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