Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f86dc7ba
Commit
f86dc7ba
authored
Oct 30, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/ffmpeg/ffmpeg.c: fixed crash in LibavcodecCallback() when used from libavformat.
parent
ddf2536c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+9
-2
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
f86dc7ba
...
...
@@ -336,10 +336,17 @@ static void LibavcodecCallback( void *p_opaque, int i_level,
char
*
psz_new_format
;
const
char
*
psz_item_name
;
if
(
p_avctx
==
NULL
||
p_avctx
->
opaque
==
NULL
)
p_avc
=
p_avctx
?
p_avctx
->
av_class
:
0
;
/* Make sure we can get p_this back */
if
(
!
p_avctx
||
!
p_avc
||
!
p_avc
->
class_name
||
strcmp
(
p_avc
->
class_name
,
"AVCodecContext"
)
)
{
if
(
i_level
==
AV_LOG_ERROR
)
vfprintf
(
stderr
,
psz_format
,
va
);
return
;
}
p_this
=
(
vlc_object_t
*
)
p_avctx
->
opaque
;
p_avc
=
p_avctx
->
av_class
;
switch
(
i_level
)
{
...
...
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