mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-16 04:15:05 +00:00
do not write dts if pts is not set
Originally committed as revision 18779 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
31df40a130
commit
8f14cdee73
@ -597,7 +597,7 @@ static void mpegts_write_pes(AVFormatContext *s, AVStream *st,
|
||||
header_len += 5;
|
||||
flags |= 0x80;
|
||||
}
|
||||
if (dts != AV_NOPTS_VALUE && dts != pts) {
|
||||
if (dts != AV_NOPTS_VALUE && pts != AV_NOPTS_VALUE && dts != pts) {
|
||||
header_len += 5;
|
||||
flags |= 0x40;
|
||||
}
|
||||
@ -630,7 +630,7 @@ static void mpegts_write_pes(AVFormatContext *s, AVStream *st,
|
||||
write_pts(q, flags >> 6, pts);
|
||||
q += 5;
|
||||
}
|
||||
if (dts != AV_NOPTS_VALUE && dts != pts) {
|
||||
if (dts != AV_NOPTS_VALUE && pts != AV_NOPTS_VALUE && dts != pts) {
|
||||
write_pts(q, 1, dts);
|
||||
q += 5;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user