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
4dc8c838
Commit
4dc8c838
authored
Sep 27, 2012
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vc1dec: add flush function for WMV9 and VC-1 decoders
CC: libav-stable@libav.org
parent
8bd324e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
vc1dec.c
libavcodec/vc1dec.c
+2
-0
No files found.
libavcodec/vc1dec.c
View file @
4dc8c838
...
...
@@ -5686,6 +5686,7 @@ AVCodec ff_vc1_decoder = {
.
init
=
vc1_decode_init
,
.
close
=
ff_vc1_decode_end
,
.
decode
=
vc1_decode_frame
,
.
flush
=
ff_mpeg_flush
,
.
capabilities
=
CODEC_CAP_DR1
|
CODEC_CAP_DELAY
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"SMPTE VC-1"
),
.
pix_fmts
=
ff_hwaccel_pixfmt_list_420
,
...
...
@@ -5701,6 +5702,7 @@ AVCodec ff_wmv3_decoder = {
.
init
=
vc1_decode_init
,
.
close
=
ff_vc1_decode_end
,
.
decode
=
vc1_decode_frame
,
.
flush
=
ff_mpeg_flush
,
.
capabilities
=
CODEC_CAP_DR1
|
CODEC_CAP_DELAY
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Windows Media Video 9"
),
.
pix_fmts
=
ff_hwaccel_pixfmt_list_420
,
...
...
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