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
9dac77a7
Commit
9dac77a7
authored
Jul 26, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
argh
Originally committed as revision 3347 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
3dc10d47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
h261.c
libavcodec/h261.c
+2
-1
No files found.
libavcodec/h261.c
View file @
9dac77a7
...
@@ -524,11 +524,12 @@ int h261_decode_picture_header(H261Context *h){
...
@@ -524,11 +524,12 @@ int h261_decode_picture_header(H261Context *h){
static
int
h261_decode_gob
(
H261Context
*
h
){
static
int
h261_decode_gob
(
H261Context
*
h
){
MpegEncContext
*
const
s
=
&
h
->
s
;
MpegEncContext
*
const
s
=
&
h
->
s
;
int
v
;
ff_set_qscale
(
s
,
s
->
qscale
);
ff_set_qscale
(
s
,
s
->
qscale
);
/* check for empty gob */
/* check for empty gob */
int
v
=
show_bits
(
&
s
->
gb
,
15
);
v
=
show_bits
(
&
s
->
gb
,
15
);
if
(
get_bits_count
(
&
s
->
gb
)
+
15
>
s
->
gb
.
size_in_bits
){
if
(
get_bits_count
(
&
s
->
gb
)
+
15
>
s
->
gb
.
size_in_bits
){
v
>>=
get_bits_count
(
&
s
->
gb
)
+
15
-
s
->
gb
.
size_in_bits
;
v
>>=
get_bits_count
(
&
s
->
gb
)
+
15
-
s
->
gb
.
size_in_bits
;
...
...
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