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
ae35f5e1
Commit
ae35f5e1
authored
Feb 26, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
100l (field picture decoding fix)
Originally committed as revision 2818 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
79c060bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mpegvideo.c
libavcodec/mpegvideo.c
+4
-4
No files found.
libavcodec/mpegvideo.c
View file @
ae35f5e1
...
...
@@ -412,7 +412,7 @@ static int init_duplicate_context(MpegEncContext *s, MpegEncContext *base){
s
->
edge_emu_buffer
=
s
->
allocated_edge_emu_buffer
+
(
s
->
width
+
64
)
*
2
*
17
;
//FIXME should be linesize instead of s->width*2 but that isnt known before get_buffer()
CHECKED_ALLOCZ
(
s
->
me
.
scratchpad
,
s
->
width
*
2
*
16
*
2
*
sizeof
(
uint8_t
))
CHECKED_ALLOCZ
(
s
->
me
.
scratchpad
,
(
s
->
width
+
64
)
*
2
*
16
*
2
*
sizeof
(
uint8_t
))
s
->
rd_scratchpad
=
s
->
me
.
scratchpad
;
s
->
b_scratchpad
=
s
->
me
.
scratchpad
;
s
->
obmc_scratchpad
=
s
->
me
.
scratchpad
+
16
;
...
...
@@ -3158,8 +3158,8 @@ void MPV_decode_mb(MpegEncContext *s, DCTELEM block[6][64])
dest_cr
=
s
->
dest
[
2
];
}
else
{
dest_y
=
s
->
b_scratchpad
;
dest_cb
=
s
->
b_scratchpad
+
16
*
s
->
linesize
;
dest_cr
=
s
->
b_scratchpad
+
16
*
s
->
linesize
+
8
;
dest_cb
=
s
->
b_scratchpad
+
16
*
linesize
;
dest_cr
=
s
->
b_scratchpad
+
16
*
linesize
+
8
;
}
if
(
!
s
->
mb_intra
)
{
/* motion handling */
...
...
@@ -4642,7 +4642,7 @@ static void encode_picture(MpegEncContext *s, int picture_number)
/* we need to initialize some time vars before we can encode b-frames */
// RAL: Condition added for MPEG1VIDEO
if
(
s
->
codec_id
==
CODEC_ID_MPEG1VIDEO
||
s
->
codec_id
==
CODEC_ID_MPEG2VIDEO
||
(
s
->
h263_pred
&&
!
s
->
h263_msmpeg4
))
ff_set_mpeg4_time
(
s
,
s
->
picture_number
);
ff_set_mpeg4_time
(
s
,
s
->
picture_number
);
//FIXME rename and use has_b_frames or similar
#endif
s
->
scene_change_score
=
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