Commit 79292510 authored by Michael Niedermayer's avatar Michael Niedermayer

adjust_write_index() fix by ("Curi Fabio Eduardo (SFL)" <curif at TELEFONICA dot COM dot AR>)

Originally committed as revision 2903 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 58254257
...@@ -391,7 +391,7 @@ static void adjust_write_index(AVFormatContext *s) ...@@ -391,7 +391,7 @@ static void adjust_write_index(AVFormatContext *s)
pts = get_pts(s, pos_max); pts = get_pts(s, pos_max);
if (pts - 100000 > pts_start) if (pts - 100000 > pts_start)
return; goto end;
ffm->write_index = FFM_PACKET_SIZE; ffm->write_index = FFM_PACKET_SIZE;
...@@ -424,6 +424,7 @@ static void adjust_write_index(AVFormatContext *s) ...@@ -424,6 +424,7 @@ static void adjust_write_index(AVFormatContext *s)
//printf("Adjusted write index from %lld to %lld: pts=%0.6f\n", orig_write_index, ffm->write_index, pts / 1000000.); //printf("Adjusted write index from %lld to %lld: pts=%0.6f\n", orig_write_index, ffm->write_index, pts / 1000000.);
//printf("pts range %0.6f - %0.6f\n", get_pts(s, 0) / 1000000. , get_pts(s, ffm->file_size - 2 * FFM_PACKET_SIZE) / 1000000. ); //printf("pts range %0.6f - %0.6f\n", get_pts(s, 0) / 1000000. , get_pts(s, ffm->file_size - 2 * FFM_PACKET_SIZE) / 1000000. );
end:
url_fseek(pb, ptr, SEEK_SET); url_fseek(pb, ptr, SEEK_SET);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment