[FFmpeg-cvslog] r13622 - trunk/libavcodec/parser.c
michael
subversion
Mon Jun 2 15:09:56 CEST 2008
Author: michael
Date: Mon Jun 2 15:09:56 2008
New Revision: 13622
Log:
Add off argument so that fetch_timestamp can search for timestamps
not associated with the first byte of access units.
Modified:
trunk/libavcodec/parser.c
Modified: trunk/libavcodec/parser.c
==============================================================================
--- trunk/libavcodec/parser.c (original)
+++ trunk/libavcodec/parser.c Mon Jun 2 15:09:56 2008
@@ -76,14 +76,14 @@ AVCodecParserContext *av_parser_init(int
return s;
}
-void ff_fetch_timestamp(AVCodecParserContext *s){
+void ff_fetch_timestamp(AVCodecParserContext *s, int off){
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 >= 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->next_frame_offset < s->cur_frame_end[i]){
+ && 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];
@@ -142,7 +142,7 @@ int av_parser_parse(AVCodecParserContext
s->fetch_timestamp=0;
s->last_pts = s->pts;
s->last_dts = s->dts;
- ff_fetch_timestamp(s);
+ ff_fetch_timestamp(s, 0);
}
/* WARNING: the returned index can be negative */
More information about the ffmpeg-cvslog
mailing list