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
8774d583
Commit
8774d583
authored
Oct 18, 2012
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bmv: get a new frame on every decode_frame(), so we can use direct rendering
parent
1cd432e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
bmv.c
libavcodec/bmv.c
+11
-7
No files found.
libavcodec/bmv.c
View file @
8774d583
...
...
@@ -196,7 +196,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
{
BMVDecContext
*
const
c
=
avctx
->
priv_data
;
int
type
,
scr_off
;
int
i
;
int
i
,
ret
;
uint8_t
*
srcptr
,
*
outptr
;
c
->
stream
=
pkt
->
data
;
...
...
@@ -237,6 +237,15 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
scr_off
=
0
;
}
if
(
c
->
pic
.
data
[
0
])
avctx
->
release_buffer
(
avctx
,
&
c
->
pic
);
c
->
pic
.
reference
=
3
;
if
((
ret
=
avctx
->
get_buffer
(
avctx
,
&
c
->
pic
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
ret
;
}
if
(
decode_bmv_frame
(
c
->
stream
,
pkt
->
size
-
(
c
->
stream
-
pkt
->
data
),
c
->
frame
,
scr_off
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Error decoding frame data
\n
"
);
return
AVERROR_INVALIDDATA
;
...
...
@@ -268,12 +277,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
c
->
avctx
=
avctx
;
avctx
->
pix_fmt
=
AV_PIX_FMT_PAL8
;
c
->
pic
.
reference
=
1
;
if
(
avctx
->
get_buffer
(
avctx
,
&
c
->
pic
)
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
-
1
;
}
c
->
frame
=
c
->
frame_base
+
640
;
return
0
;
...
...
@@ -365,6 +368,7 @@ AVCodec ff_bmv_video_decoder = {
.
init
=
decode_init
,
.
close
=
decode_end
,
.
decode
=
decode_frame
,
.
capabilities
=
CODEC_CAP_DR1
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Discworld II BMV video"
),
};
...
...
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