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
fd085bc0
Commit
fd085bc0
authored
Mar 04, 2011
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avio: fix fourcc if any character is >=0x80.
Fixes issue 2638.
parent
8cf9a09d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
avio_internal.h
libavformat/avio_internal.h
+4
-1
No files found.
libavformat/avio_internal.h
View file @
fd085bc0
...
...
@@ -42,6 +42,9 @@ int ffio_read_partial(AVIOContext *s, unsigned char *buf, int size);
void
ffio_fill
(
AVIOContext
*
s
,
int
b
,
int
count
);
#define ffio_wfourcc(pb, str) avio_wl32(pb, MKTAG((str)[0], (str)[1], (str)[2], (str)[3]))
static
av_always_inline
void
ffio_wfourcc
(
AVIOContext
*
pb
,
const
uint8_t
*
s
)
{
avio_wl32
(
pb
,
MKTAG
(
s
[
0
],
s
[
1
],
s
[
2
],
s
[
3
]));
}
#endif // AVFORMAT_AVIO_INTERNAL_H
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