Skip to content

Commit

Permalink
avconv: remove a write-only variable
Browse files Browse the repository at this point in the history
  • Loading branch information
elenril committed Feb 24, 2014
1 parent 8aca00c commit 67f2a68
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion avconv.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
1 change: 0 additions & 1 deletion avconv.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 67f2a68

Please sign in to comment.