Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
e4e234fa
Commit
e4e234fa
authored
Feb 09, 2011
by
Anton Khirnov
Committed by
Mans Rullgard
Feb 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asf: make ff_guidcmp inline and move it to asf.h
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
c7ac200d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
asf.h
libavformat/asf.h
+6
-1
asfdec.c
libavformat/asfdec.c
+0
-5
No files found.
libavformat/asf.h
View file @
e4e234fa
...
@@ -230,7 +230,12 @@ extern const AVMetadataConv ff_asf_metadata_conv[];
...
@@ -230,7 +230,12 @@ extern const AVMetadataConv ff_asf_metadata_conv[];
#define ASF_PL_FLAG_KEY_FRAME 0x80 //1000 0000
#define ASF_PL_FLAG_KEY_FRAME 0x80 //1000 0000
extern
AVInputFormat
ff_asf_demuxer
;
extern
AVInputFormat
ff_asf_demuxer
;
int
ff_guidcmp
(
const
void
*
g1
,
const
void
*
g2
);
static
av_always_inline
int
ff_guidcmp
(
const
void
*
g1
,
const
void
*
g2
)
{
return
memcmp
(
g1
,
g2
,
sizeof
(
ff_asf_guid
));
}
void
ff_get_guid
(
ByteIOContext
*
s
,
ff_asf_guid
*
g
);
void
ff_get_guid
(
ByteIOContext
*
s
,
ff_asf_guid
*
g
);
#endif
/* AVFORMAT_ASF_H */
#endif
/* AVFORMAT_ASF_H */
libavformat/asfdec.c
View file @
e4e234fa
...
@@ -49,11 +49,6 @@ static const ff_asf_guid stream_bitrate_guid = { /* (http://get.to/sdp) */
...
@@ -49,11 +49,6 @@ static const ff_asf_guid stream_bitrate_guid = { /* (http://get.to/sdp) */
/**********************************/
/**********************************/
/* decoding */
/* decoding */
int
ff_guidcmp
(
const
void
*
g1
,
const
void
*
g2
)
{
return
memcmp
(
g1
,
g2
,
sizeof
(
ff_asf_guid
));
}
#ifdef DEBUG
#ifdef DEBUG
#define PRINT_IF_GUID(g,cmp) \
#define PRINT_IF_GUID(g,cmp) \
if (!ff_guidcmp(g, &cmp)) \
if (!ff_guidcmp(g, &cmp)) \
...
...
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