Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
49943a18
Commit
49943a18
authored
Oct 19, 2002
by
Michael Niedermayer
Browse files
fixing interlaced dct with 4mv
Originally committed as revision 1050 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8b32880c
Changes
1
Hide whitespace changes
Inline
Side-by-side
libavcodec/h263.c
View file @
49943a18
...
...
@@ -619,6 +619,11 @@ void mpeg4_encode_mb(MpegEncContext * s,
cbpy
^=
0xf
;
put_bits
(
pb2
,
cbpy_tab
[
cbpy
][
1
],
cbpy_tab
[
cbpy
][
0
]);
if
(
!
s
->
progressive_sequence
){
if
(
cbp
)
put_bits
(
pb2
,
1
,
s
->
interlaced_dct
);
}
if
(
interleaved_stats
){
bits
=
get_bit_count
(
&
s
->
pb
);
s
->
misc_bits
+=
bits
-
s
->
last_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