mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
Our MPEG-TS demuxer does not send complete PES packets but sends them
piecewise, thus the end values cannot be used for associating timestamps. Originally committed as revision 13626 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5c027f8866
commit
05d1d160bc
@ -84,7 +84,8 @@ void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
|
||||
for(i = 0; i < AV_PARSER_PTS_NB; i++) {
|
||||
if ( s->next_frame_offset + off >= s->cur_frame_offset[i]
|
||||
&&(s-> frame_offset < s->cur_frame_offset[i] || !s->frame_offset)
|
||||
&& s->next_frame_offset + off < s->cur_frame_end[i]){
|
||||
//check is disabled becausue mpeg-ts doesnt send complete PES packets
|
||||
&& /*s->next_frame_offset + off <*/ s->cur_frame_end[i]){
|
||||
s->dts= s->cur_frame_dts[i];
|
||||
s->pts= s->cur_frame_pts[i];
|
||||
s->offset = s->next_frame_offset - s->cur_frame_offset[i];
|
||||
|
Loading…
Reference in New Issue
Block a user