summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/avconv.h b/avconv.h
index 56a0282c16..df701ce43b 100644
--- a/avconv.h
+++ b/avconv.h
@@ -198,6 +198,8 @@ typedef struct InputFilter {
struct FilterGraph *graph;
uint8_t *name;
+ AVFifoBuffer *frame_queue;
+
// parameters configured for this input
int format;
@@ -270,14 +272,6 @@ typedef struct InputStream {
AVRational framerate; /* framerate forced with -r */
int autorotate;
- int resample_height;
- int resample_width;
- int resample_pix_fmt;
-
- int resample_sample_fmt;
- int resample_sample_rate;
- int resample_channels;
- uint64_t resample_channel_layout;
/* decoded data from this stream goes into all those filters
* currently video and audio only */
@@ -490,7 +484,6 @@ int init_simple_filtergraph(InputStream *ist, OutputStream *ost);
int init_complex_filtergraph(FilterGraph *fg);
int ifilter_parameters_from_frame(InputFilter *ifilter, const AVFrame *frame);
-int ifilter_parameters_from_decoder(InputFilter *ifilter, const AVCodecContext *avctx);
int avconv_parse_options(int argc, char **argv);