summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-07-06 08:35:07 +0200
committerAnton Khirnov <anton@khirnov.net>2011-07-08 19:58:23 +0200
commite98bc78ca168bbb615752ed8e3b97bcacafdf0b7 (patch)
tree87acbb346062ba35134df4ad1917f9f0f4e06ece /ffmpeg.c
parenta58db9d283ced3eb443b3123e6e742dfd0614bc4 (diff)
ffmpeg: remove unused variables from InputStream.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 9ae197acec..fe8b3446b8 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -306,7 +306,6 @@ typedef struct InputStream {
AVStream *st;
int discard; /* true if stream data should be discarded */
int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */
- int64_t sample_index; /* current sample */
AVCodec *dec;
int64_t start; /* time when read started */
@@ -317,10 +316,6 @@ typedef struct InputStream {
int is_start; /* is 1 at the start and after a discontinuity */
int showed_multi_packet_warning;
int is_past_recording_time;
-#if CONFIG_AVFILTER
- AVFrame *filter_frame;
- int has_filter_frame;
-#endif
} InputStream;
typedef struct InputFile {