mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
cosmetic
Originally committed as revision 13624 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ec0c5d482e
commit
ebdd73778c
@ -78,11 +78,12 @@ AVCodecParserContext *av_parser_init(int codec_id)
|
|||||||
|
|
||||||
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
|
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
s->dts= s->pts= AV_NOPTS_VALUE;
|
s->dts= s->pts= AV_NOPTS_VALUE;
|
||||||
s->offset= 0;
|
s->offset= 0;
|
||||||
for(i = 0; i < AV_PARSER_PTS_NB; i++) {
|
for(i = 0; i < AV_PARSER_PTS_NB; i++) {
|
||||||
if ( s->next_frame_offset + off >= s->cur_frame_offset[i]
|
if ( s->next_frame_offset + off >= s->cur_frame_offset[i]
|
||||||
&&(s-> frame_offset < s->cur_frame_offset[i] || !s->frame_offset)
|
&&(s-> frame_offset < s->cur_frame_offset[i] || !s->frame_offset)
|
||||||
&& s->next_frame_offset + off < s->cur_frame_end[i]){
|
&& s->next_frame_offset + off < s->cur_frame_end[i]){
|
||||||
s->dts= s->cur_frame_dts[i];
|
s->dts= s->cur_frame_dts[i];
|
||||||
s->pts= s->cur_frame_pts[i];
|
s->pts= s->cur_frame_pts[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user