summaryrefslogtreecommitdiff
path: root/libavcodec/parser.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-06-02 13:14:01 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-06-02 13:14:01 +0000
commitebdd73778c56d07caa57c236d11ee3df3ee1004c (patch)
treed01aeb96611c3c0fbfca403bda1fc3f6d4b7ea3e /libavcodec/parser.c
parentec0c5d482e6f0cc8c94980494cf6bad39419302c (diff)
cosmetic
Originally committed as revision 13624 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/parser.c')
-rw-r--r--libavcodec/parser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/parser.c b/libavcodec/parser.c
index 0bc9091fe3..47c7e714a8 100644
--- a/libavcodec/parser.c
+++ b/libavcodec/parser.c
@@ -78,11 +78,12 @@ AVCodecParserContext *av_parser_init(int codec_id)
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
int i;
+
s->dts= s->pts= AV_NOPTS_VALUE;
s->offset= 0;
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-> frame_offset < s->cur_frame_offset[i] || !s->frame_offset)
&& s->next_frame_offset + off < s->cur_frame_end[i]){
s->dts= s->cur_frame_dts[i];
s->pts= s->cur_frame_pts[i];