Commit 7846280d authored by Michael Niedermayer's avatar Michael Niedermayer

mpegts: assert position in dts reading code.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent de9862a9
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include "libavutil/dict.h" #include "libavutil/dict.h"
#include "libavutil/mathematics.h" #include "libavutil/mathematics.h"
#include "libavutil/opt.h" #include "libavutil/opt.h"
#include "libavutil/avassert.h"
#include "libavcodec/bytestream.h" #include "libavcodec/bytestream.h"
#include "avformat.h" #include "avformat.h"
#include "mpegts.h" #include "mpegts.h"
...@@ -1778,6 +1779,7 @@ static int64_t mpegts_get_dts(AVFormatContext *s, int stream_index, ...@@ -1778,6 +1779,7 @@ static int64_t mpegts_get_dts(AVFormatContext *s, int stream_index,
return AV_NOPTS_VALUE; return AV_NOPTS_VALUE;
av_free_packet(&pkt); av_free_packet(&pkt);
if(pkt.stream_index == stream_index && pkt.dts != AV_NOPTS_VALUE){ if(pkt.stream_index == stream_index && pkt.dts != AV_NOPTS_VALUE){
av_assert0(pkt.pos >= 0);
*ppos= pkt.pos; *ppos= pkt.pos;
return pkt.dts; return pkt.dts;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment