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
dd6abc92
Commit
dd6abc92
authored
Nov 22, 2012
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vqavideo: Reinitialise the actually used partial codebook bytestream-reader.
Fixes ticket #1942.
parent
6aa6baa4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
vqavideo.c
libavcodec/vqavideo.c
+1
-3
No files found.
libavcodec/vqavideo.c
View file @
dd6abc92
...
...
@@ -566,9 +566,7 @@ static int vqa_decode_chunk(VqaContext *s)
s
->
partial_countdown
--
;
if
(
s
->
partial_countdown
<=
0
)
{
GetByteContext
gb
;
bytestream2_init
(
&
gb
,
s
->
next_codebook_buffer
,
s
->
next_codebook_buffer_index
);
bytestream2_init
(
&
s
->
gb
,
s
->
next_codebook_buffer
,
s
->
next_codebook_buffer_index
);
/* decompress codebook */
if
((
res
=
decode_format80
(
s
,
s
->
next_codebook_buffer_index
,
s
->
codebook
,
s
->
codebook_size
,
0
))
<
0
)
...
...
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