Originally committed as revision 13624 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-06-02 13:14:01 +00:00
parent ec0c5d482e
commit ebdd73778c
1 changed files with 2 additions and 1 deletions

View File

@ -78,6 +78,7 @@ 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++) {