OSDN Git Service
(root)
/
android-x86
/
external-ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8aca00c
)
avconv: remove a write-only variable
author
Anton Khirnov
<anton@khirnov.net>
Wed, 19 Feb 2014 15:16:43 +0000
(16:16 +0100)
committer
Anton Khirnov
<anton@khirnov.net>
Mon, 24 Feb 2014 16:30:48 +0000
(17:30 +0100)
avconv.c
patch
|
blob
|
history
avconv.h
patch
|
blob
|
history
diff --git
a/avconv.c
b/avconv.c
index
64e8321
..
13e6778
100644
(file)
--- a/
avconv.c
+++ b/
avconv.c
@@
-1480,7
+1480,6
@@
static int init_input_stream(int ist_index, char *error, int error_len)
ist->last_dts = ist->st->avg_frame_rate.num ? - ist->st->codec->has_b_frames * AV_TIME_BASE / av_q2d(ist->st->avg_frame_rate) : 0;
ist->next_dts = AV_NOPTS_VALUE;
init_pts_correction(&ist->pts_ctx);
- ist->is_start = 1;
return 0;
}
diff --git
a/avconv.h
b/avconv.h
index
c270401
..
c912fae
100644
(file)
--- a/
avconv.h
+++ b/
avconv.h
@@
-229,7
+229,6
@@
typedef struct InputStream {
int64_t last_dts;
PtsCorrectionContext pts_ctx;
double ts_scale;
- int is_start; /* is 1 at the start and after a discontinuity */
int showed_multi_packet_warning;
AVDictionary *opts;
AVRational framerate; /* framerate forced with -r */