diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-12-07 11:59:53 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-07 11:59:53 +0100 |
commit | 7f763775aa00976d09f0fe64d2432033e0e2e1b2 (patch) | |
tree | b01ac2494c48e5e1ab23a78f82a340dbacc69090 | |
parent | 4dfc8f69b258f4f30bb1b3e7040f96e1ead5bd5d (diff) | |
download | ffmpeg-7f763775aa00976d09f0fe64d2432033e0e2e1b2.tar.gz |
avformat/utils: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 71100f8e26..fc4de4c34e 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2736,7 +2736,6 @@ int ff_rfps_add_frame(AVFormatContext *ic, AVStream *st, int64_t ts) int n = st->info->duration_count; for (i=0; i<MAX_STD_TIMEBASES; i++) { if (st->info->duration_error[0][1][i] < 1e10) { - int framerate= get_std_framerate(i); double a0 = st->info->duration_error[0][0][i] / n; double error0 = st->info->duration_error[0][1][i] / n - a0*a0; double a1 = st->info->duration_error[1][0][i] / n; |