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
c7357344
Commit
c7357344
authored
Nov 21, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix segmentation fault at ffmpeg startup (fixes #858)
parent
90e3a296
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+2
-3
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
c7357344
...
@@ -205,9 +205,6 @@ vlc_module_begin();
...
@@ -205,9 +205,6 @@ vlc_module_begin();
set_callbacks
(
E_
(
OpenScaler
),
E_
(
CloseScaler
)
);
set_callbacks
(
E_
(
OpenScaler
),
E_
(
CloseScaler
)
);
add_integer
(
"swscale-mode"
,
0
,
NULL
,
SCALEMODE_TEXT
,
SCALEMODE_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"swscale-mode"
,
0
,
NULL
,
SCALEMODE_TEXT
,
SCALEMODE_LONGTEXT
,
VLC_TRUE
);
change_integer_list
(
pi_mode_values
,
ppsz_mode_descriptions
,
0
);
change_integer_list
(
pi_mode_values
,
ppsz_mode_descriptions
,
0
);
var_Create
(
p_module
->
p_libvlc_global
,
"avcodec"
,
VLC_VAR_MUTEX
);
#else
#else
/* chroma conversion submodule */
/* chroma conversion submodule */
add_submodule
();
add_submodule
();
...
@@ -235,6 +232,8 @@ vlc_module_begin();
...
@@ -235,6 +232,8 @@ vlc_module_begin();
add_shortcut
(
"ffmpeg-deinterlace"
);
add_shortcut
(
"ffmpeg-deinterlace"
);
#endif
#endif
var_Create
(
p_module
->
p_libvlc_global
,
"avcodec"
,
VLC_VAR_MUTEX
);
vlc_module_end
();
vlc_module_end
();
/*****************************************************************************
/*****************************************************************************
...
...
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