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
b453e768
Commit
b453e768
authored
May 06, 2015
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/qdrw: Also support real-world qdraw images.
parent
223a8598
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
qdrw.c
libavcodec/qdrw.c
+4
-0
version.h
libavcodec/version.h
+1
-1
No files found.
libavcodec/qdrw.c
View file @
b453e768
...
...
@@ -124,6 +124,10 @@ static int decode_frame(AVCodecContext *avctx,
int
w
,
h
,
ret
;
bytestream2_init
(
&
gbc
,
avpkt
->
data
,
avpkt
->
size
);
if
(
avpkt
->
size
>=
552
&&
AV_RB32
(
&
avpkt
->
data
[
10
])
!=
0x001102FF
&&
AV_RB32
(
&
avpkt
->
data
[
522
])
==
0x001102FF
)
bytestream2_skip
(
&
gbc
,
512
);
/* smallest PICT header */
if
(
bytestream2_get_bytes_left
(
&
gbc
)
<
40
)
{
...
...
libavcodec/version.h
View file @
b453e768
...
...
@@ -30,7 +30,7 @@
#define LIBAVCODEC_VERSION_MAJOR 56
#define LIBAVCODEC_VERSION_MINOR 37
#define LIBAVCODEC_VERSION_MICRO 10
1
#define LIBAVCODEC_VERSION_MICRO 10
2
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
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