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
Steve Lhomme
VLC
Commits
f250fde8
Commit
f250fde8
authored
May 26, 2010
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: check p_pict for NULL before using it
parent
86263dcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/codec/avcodec/encoder.c
modules/codec/avcodec/encoder.c
+3
-1
No files found.
modules/codec/avcodec/encoder.c
View file @
f250fde8
...
...
@@ -884,7 +884,9 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
if
(
!
p_sys
->
p_context
->
max_b_frames
||
!
p_sys
->
p_context
->
delay
)
{
/* No delay -> output pts == input pts */
p_block
->
i_pts
=
p_block
->
i_dts
=
p_pict
->
date
;
if
(
p_pict
)
p_block
->
i_dts
=
p_pict
->
date
;
p_block
->
i_pts
=
p_block
->
i_dts
;
}
else
if
(
p_sys
->
p_context
->
coded_frame
->
pts
!=
(
int64_t
)
AV_NOPTS_VALUE
&&
p_sys
->
p_context
->
coded_frame
->
pts
!=
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