Skip to content
Snippets Groups Projects
Commit ed923859 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Set next_pts to pts if it is unknown and pkt->dts is not known either. This

is needed because next_pts is used to calculate the next pts and adding
to AV_NOPTS_VALUE does not achieve the intended result.

Originally committed as revision 12132 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b1b818fc
No related branches found
No related tags found
No related merge requests found
...@@ -1055,6 +1055,9 @@ static int output_packet(AVInputStream *ist, int ist_index, ...@@ -1055,6 +1055,9 @@ static int output_packet(AVInputStream *ist, int ist_index,
AVSubtitle subtitle, *subtitle_to_free; AVSubtitle subtitle, *subtitle_to_free;
int got_subtitle; int got_subtitle;
if(ist->next_pts == AV_NOPTS_VALUE)
ist->next_pts= ist->pts;
if (pkt == NULL) { if (pkt == NULL) {
/* EOF handling */ /* EOF handling */
ptr = NULL; ptr = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment