Commit 70a25587 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '67f2a688'

* commit '67f2a688':
  avconv: remove a write-only variable

Conflicts:
	ffmpeg.c
	ffmpeg.h
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents e66247e9 67f2a688
...@@ -2156,7 +2156,6 @@ static int init_input_stream(int ist_index, char *error, int error_len) ...@@ -2156,7 +2156,6 @@ static int init_input_stream(int ist_index, char *error, int error_len)
ist->next_pts = AV_NOPTS_VALUE; ist->next_pts = AV_NOPTS_VALUE;
ist->next_dts = AV_NOPTS_VALUE; ist->next_dts = AV_NOPTS_VALUE;
ist->is_start = 1;
return 0; return 0;
} }
......
...@@ -255,7 +255,6 @@ typedef struct InputStream { ...@@ -255,7 +255,6 @@ typedef struct InputStream {
int64_t filter_in_rescale_delta_last; int64_t filter_in_rescale_delta_last;
double ts_scale; double ts_scale;
int is_start; /* is 1 at the start and after a discontinuity */
int saw_first_ts; int saw_first_ts;
int showed_multi_packet_warning; int showed_multi_packet_warning;
AVDictionary *opts; AVDictionary *opts;
......
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