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
8c908d7d
Commit
8c908d7d
authored
Mar 09, 2008
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fraps v5 decoding support
Originally committed as revision 12393 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
6a02cb82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
1 deletion
+42
-1
fraps.c
libavcodec/fraps.c
+42
-1
No files found.
libavcodec/fraps.c
View file @
8c908d7d
...
...
@@ -148,7 +148,7 @@ static int decode_frame(AVCodecContext *avctx,
version
=
header
&
0xff
;
header_size
=
(
header
&
(
1
<<
30
))
?
8
:
4
;
/* bit 30 means pad to 8 bytes */
if
(
version
>
2
&&
version
!=
4
)
{
if
(
version
>
2
&&
version
!=
4
&&
version
!=
5
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"This file is encoded with Fraps version %d. "
\
"This codec can only decode version 0, 1, 2 and 4.
\n
"
,
version
);
...
...
@@ -288,6 +288,47 @@ static int decode_frame(AVCodecContext *avctx,
}
}
break
;
case
5
:
/* Virtually the same as version 4, but is for RGB24 */
avctx
->
pix_fmt
=
PIX_FMT_BGR24
;
planes
=
3
;
f
->
reference
=
1
;
f
->
buffer_hints
=
FF_BUFFER_HINTS_VALID
|
FF_BUFFER_HINTS_PRESERVE
|
FF_BUFFER_HINTS_REUSABLE
;
if
(
avctx
->
reget_buffer
(
avctx
,
f
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"reget_buffer() failed
\n
"
);
return
-
1
;
}
/* skip frame */
if
(
buf_size
==
8
)
{
f
->
pict_type
=
FF_P_TYPE
;
f
->
key_frame
=
0
;
break
;
}
f
->
pict_type
=
FF_I_TYPE
;
f
->
key_frame
=
1
;
if
((
AV_RL32
(
buf
)
!=
FPS_TAG
)
||
(
buf_size
<
(
planes
*
1024
+
24
)))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Fraps: error in data stream
\n
"
);
return
-
1
;
}
for
(
i
=
0
;
i
<
planes
;
i
++
)
{
offs
[
i
]
=
AV_RL32
(
buf
+
4
+
i
*
4
);
if
(
offs
[
i
]
>=
buf_size
||
(
i
&&
offs
[
i
]
<=
offs
[
i
-
1
]
+
1024
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Fraps: plane %i offset is out of bounds
\n
"
,
i
);
return
-
1
;
}
}
offs
[
planes
]
=
buf_size
;
for
(
i
=
0
;
i
<
planes
;
i
++
){
s
->
tmpbuf
=
av_realloc
(
s
->
tmpbuf
,
offs
[
i
+
1
]
-
offs
[
i
]
-
1024
+
FF_INPUT_BUFFER_PADDING_SIZE
);
if
(
fraps2_decode_plane
(
s
,
f
->
data
[
0
]
+
i
+
(
f
->
linesize
[
0
]
*
(
avctx
->
height
-
1
)),
-
f
->
linesize
[
0
],
avctx
->
width
,
avctx
->
height
,
buf
+
offs
[
i
],
offs
[
i
+
1
]
-
offs
[
i
],
1
,
3
)
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Error decoding plane %i
\n
"
,
i
);
return
-
1
;
}
}
break
;
}
*
frame
=
*
f
;
...
...
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