Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
x264
Commits
0ad4944b
Commit
0ad4944b
authored
Dec 24, 2008
by
Loren Merritt
Committed by
Fiona Glaser
Dec 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix crash in --me esa/tesa introduced in r1058
Also suppress the last mingw warning message
parent
9fe6e5e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
common/common.c
common/common.c
+1
-1
common/mc.c
common/mc.c
+1
-1
No files found.
common/common.c
View file @
0ad4944b
...
...
@@ -247,7 +247,7 @@ int x264_param_parse( x264_param_t *p, const char *name, const char *value )
if
(
b_error
)
{
char
*
buf
=
strdup
(
value
);
char
*
tok
,
*
saveptr
,
*
init
;
char
*
tok
,
UNUSED
*
saveptr
,
*
init
;
b_error
=
0
;
p
->
cpu
=
0
;
for
(
init
=
buf
;
(
tok
=
strtok_r
(
init
,
","
,
&
saveptr
));
init
=
NULL
)
...
...
common/mc.c
View file @
0ad4944b
...
...
@@ -439,7 +439,7 @@ void x264_frame_filter( x264_t *h, x264_frame_t *frame, int mb_y, int b_end )
start
=
-
PADV
;
}
if
(
b_end
)
height
+=
PADV
-
8
;
height
+=
PADV
-
9
;
for
(
y
=
start
;
y
<
height
;
y
++
)
{
uint8_t
*
pix
=
frame
->
plane
[
0
]
+
y
*
stride
-
PADH
;
...
...
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