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
fb22c237
Commit
fb22c237
authored
Apr 27, 2011
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpegvideo: don't av_malloc(0).
parent
f8b12459
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
mpegvideo.c
libavcodec/mpegvideo.c
+12
-0
No files found.
libavcodec/mpegvideo.c
View file @
fb22c237
...
@@ -520,6 +520,8 @@ av_cold int MPV_common_init(MpegEncContext *s)
...
@@ -520,6 +520,8 @@ av_cold int MPV_common_init(MpegEncContext *s)
s
->
flags
=
s
->
avctx
->
flags
;
s
->
flags
=
s
->
avctx
->
flags
;
s
->
flags2
=
s
->
avctx
->
flags2
;
s
->
flags2
=
s
->
avctx
->
flags2
;
if
(
s
->
width
&&
s
->
height
)
{
s
->
mb_width
=
(
s
->
width
+
15
)
/
16
;
s
->
mb_width
=
(
s
->
width
+
15
)
/
16
;
s
->
mb_stride
=
s
->
mb_width
+
1
;
s
->
mb_stride
=
s
->
mb_width
+
1
;
s
->
b8_stride
=
s
->
mb_width
*
2
+
1
;
s
->
b8_stride
=
s
->
mb_width
*
2
+
1
;
...
@@ -599,11 +601,16 @@ av_cold int MPV_common_init(MpegEncContext *s)
...
@@ -599,11 +601,16 @@ av_cold int MPV_common_init(MpegEncContext *s)
FF_ALLOCZ_OR_GOTO
(
s
->
avctx
,
s
->
dct_offset
,
2
*
64
*
sizeof
(
uint16_t
),
fail
)
FF_ALLOCZ_OR_GOTO
(
s
->
avctx
,
s
->
dct_offset
,
2
*
64
*
sizeof
(
uint16_t
),
fail
)
}
}
}
}
}
FF_ALLOCZ_OR_GOTO
(
s
->
avctx
,
s
->
picture
,
MAX_PICTURE_COUNT
*
sizeof
(
Picture
),
fail
)
FF_ALLOCZ_OR_GOTO
(
s
->
avctx
,
s
->
picture
,
MAX_PICTURE_COUNT
*
sizeof
(
Picture
),
fail
)
for
(
i
=
0
;
i
<
MAX_PICTURE_COUNT
;
i
++
)
{
for
(
i
=
0
;
i
<
MAX_PICTURE_COUNT
;
i
++
)
{
avcodec_get_frame_defaults
((
AVFrame
*
)
&
s
->
picture
[
i
]);
avcodec_get_frame_defaults
((
AVFrame
*
)
&
s
->
picture
[
i
]);
}
}
if
(
s
->
width
&&
s
->
height
)
{
FF_ALLOCZ_OR_GOTO
(
s
->
avctx
,
s
->
error_status_table
,
mb_array_size
*
sizeof
(
uint8_t
),
fail
)
FF_ALLOCZ_OR_GOTO
(
s
->
avctx
,
s
->
error_status_table
,
mb_array_size
*
sizeof
(
uint8_t
),
fail
)
if
(
s
->
codec_id
==
CODEC_ID_MPEG4
||
(
s
->
flags
&
CODEC_FLAG_INTERLACED_ME
)){
if
(
s
->
codec_id
==
CODEC_ID_MPEG4
||
(
s
->
flags
&
CODEC_FLAG_INTERLACED_ME
)){
...
@@ -658,9 +665,12 @@ av_cold int MPV_common_init(MpegEncContext *s)
...
@@ -658,9 +665,12 @@ av_cold int MPV_common_init(MpegEncContext *s)
s
->
visualization_buffer
[
1
]
=
av_malloc
((
s
->
mb_width
*
16
+
2
*
EDGE_WIDTH
)
*
s
->
mb_height
*
16
+
2
*
EDGE_WIDTH
);
s
->
visualization_buffer
[
1
]
=
av_malloc
((
s
->
mb_width
*
16
+
2
*
EDGE_WIDTH
)
*
s
->
mb_height
*
16
+
2
*
EDGE_WIDTH
);
s
->
visualization_buffer
[
2
]
=
av_malloc
((
s
->
mb_width
*
16
+
2
*
EDGE_WIDTH
)
*
s
->
mb_height
*
16
+
2
*
EDGE_WIDTH
);
s
->
visualization_buffer
[
2
]
=
av_malloc
((
s
->
mb_width
*
16
+
2
*
EDGE_WIDTH
)
*
s
->
mb_height
*
16
+
2
*
EDGE_WIDTH
);
}
}
}
s
->
context_initialized
=
1
;
s
->
context_initialized
=
1
;
if
(
s
->
width
&&
s
->
height
)
{
s
->
thread_context
[
0
]
=
s
;
s
->
thread_context
[
0
]
=
s
;
threads
=
s
->
avctx
->
thread_count
;
threads
=
s
->
avctx
->
thread_count
;
...
@@ -676,6 +686,8 @@ av_cold int MPV_common_init(MpegEncContext *s)
...
@@ -676,6 +686,8 @@ av_cold int MPV_common_init(MpegEncContext *s)
s
->
thread_context
[
i
]
->
end_mb_y
=
(
s
->
mb_height
*
(
i
+
1
)
+
s
->
avctx
->
thread_count
/
2
)
/
s
->
avctx
->
thread_count
;
s
->
thread_context
[
i
]
->
end_mb_y
=
(
s
->
mb_height
*
(
i
+
1
)
+
s
->
avctx
->
thread_count
/
2
)
/
s
->
avctx
->
thread_count
;
}
}
}
return
0
;
return
0
;
fail
:
fail
:
MPV_common_end
(
s
);
MPV_common_end
(
s
);
...
...
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