diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-02 22:06:36 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-23 11:55:43 +0100 |
commit | 07fd0a22192805d56c635eb294dc26b0a54ae325 (patch) | |
tree | 1ee9675c6b69f5cde5e44bbb31a9d5856894cbe0 /avconv_filter.c | |
parent | d4df02131b5522a99a4e6035368484e809706ed5 (diff) | |
download | ffmpeg-07fd0a22192805d56c635eb294dc26b0a54ae325.tar.gz |
avconv: add infrastructure for using hwaccels
Diffstat (limited to 'avconv_filter.c')
-rw-r--r-- | avconv_filter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/avconv_filter.c b/avconv_filter.c index 312cb5c212..ffccd93eee 100644 --- a/avconv_filter.c +++ b/avconv_filter.c @@ -433,7 +433,8 @@ static int configure_input_video_filter(FilterGraph *fg, InputFilter *ifilter, ist->st->sample_aspect_ratio : ist->st->codec->sample_aspect_ratio; snprintf(args, sizeof(args), "%d:%d:%d:%d:%d:%d:%d", ist->st->codec->width, - ist->st->codec->height, ist->st->codec->pix_fmt, + ist->st->codec->height, + ist->hwaccel_retrieve_data ? ist->hwaccel_retrieved_pix_fmt : ist->st->codec->pix_fmt, tb.num, tb.den, sar.num, sar.den); snprintf(name, sizeof(name), "graph %d input from stream %d:%d", fg->index, ist->file_index, ist->st->index); |