summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2014-04-22 15:22:53 +0200
committerAnton Khirnov <anton@khirnov.net>2014-04-28 21:21:54 +0200
commit35177ba77ff60a8b8839783f57e44bcc4214507a (patch)
treef0fe9c9984933d60e8405c2a5f9f7de68cad13da /avconv.h
parentb2b4afe8115fe3c8b005d663610e5af06f110165 (diff)
avconv: add support for DXVA2 decoding
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/avconv.h b/avconv.h
index 2484314f34..5e23714838 100644
--- a/avconv.h
+++ b/avconv.h
@@ -52,6 +52,7 @@ enum HWAccelID {
HWACCEL_NONE = 0,
HWACCEL_AUTO,
HWACCEL_VDPAU,
+ HWACCEL_DXVA2,
};
typedef struct HWAccel {
@@ -421,5 +422,6 @@ FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost);
int avconv_parse_options(int argc, char **argv);
int vdpau_init(AVCodecContext *s);
+int dxva2_init(AVCodecContext *s);
#endif /* AVCONV_H */