diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index e25a0d0891dda9a147fd83d842aa05b547f41656..5d07e39c9fc6c73740c70aebec54083a60f11c93 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -888,7 +888,7 @@ static void mpegts_push_data(MpegTSFilter *filter,
                 pes->pts = AV_NOPTS_VALUE;
                 pes->dts = AV_NOPTS_VALUE;
                 if ((flags & 0xc0) == 0x80) {
-                    pes->pts = get_pts(r);
+                    pes->dts = pes->pts = get_pts(r);
                     r += 5;
                 } else if ((flags & 0xc0) == 0xc0) {
                     pes->pts = get_pts(r);