diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 21:20:44 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 21:20:44 +0000 |
commit | 22b37f5d3200cfe4c15eded883663cf0612093c1 (patch) | |
tree | ad400223b1e250fc4c2e5ed08d959663b36fd5d9 /libavformat/utils.c | |
parent | b1b77fe967d37415935c136afb943cf47636c6c6 (diff) | |
download | ffmpeg-22b37f5d3200cfe4c15eded883663cf0612093c1.tar.gz |
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
Originally committed as revision 2151 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 970c51e627..297f5b5c04 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -606,7 +606,6 @@ static void av_estimate_timings_from_pts(AVFormatContext *ic) st->start_time < start_time) start_time = st->start_time; } - fprintf(stderr, "start=%lld\n", start_time); if (start_time != MAXINT64) ic->start_time = start_time; @@ -1504,12 +1503,6 @@ int get_frame_filename(char *buf, int buf_size, nd = nd * 10 + *p++ - '0'; } c = *p++; - if (c == '*' && nd > 0) { - // The nd field is actually the modulus - number = number % nd; - c = *p++; - nd = 0; - } } while (isdigit(c)); switch(c) { |