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
2e242de3
Commit
2e242de3
authored
Oct 30, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/ffmpeg/ffmpeg.c: avoid a strcmp() in LibavcodecCallback().
parent
d1d351f8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+5
-2
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
2e242de3
...
@@ -338,13 +338,16 @@ static void LibavcodecCallback( void *p_opaque, int i_level,
...
@@ -338,13 +338,16 @@ static void LibavcodecCallback( void *p_opaque, int i_level,
p_avc
=
p_avctx
?
p_avctx
->
av_class
:
0
;
p_avc
=
p_avctx
?
p_avctx
->
av_class
:
0
;
#define cln p_avc->class_name
/* Make sure we can get p_this back */
/* Make sure we can get p_this back */
if
(
!
p_avctx
||
!
p_avc
||
!
p_avc
->
class_name
||
if
(
!
p_avctx
||
!
p_avc
||
!
cln
||
strcmp
(
p_avc
->
class_name
,
"AVCodecContext"
)
)
cln
[
0
]
!=
'A'
||
cln
[
1
]
!=
'V'
||
cln
[
2
]
!=
'C'
||
cln
[
3
]
!=
'o'
||
cln
[
4
]
!=
'd'
||
cln
[
5
]
!=
'e'
||
cln
[
6
]
!=
'c'
)
{
{
if
(
i_level
==
AV_LOG_ERROR
)
vfprintf
(
stderr
,
psz_format
,
va
);
if
(
i_level
==
AV_LOG_ERROR
)
vfprintf
(
stderr
,
psz_format
,
va
);
return
;
return
;
}
}
#undef cln
p_this
=
(
vlc_object_t
*
)
p_avctx
->
opaque
;
p_this
=
(
vlc_object_t
*
)
p_avctx
->
opaque
;
...
...
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