diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-03-24 02:02:33 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-05-11 15:00:03 +0200 |
commit | 1839fafa951308237c4672ffd9a94f927b26eac7 (patch) | |
tree | a8d6a0e348b2634343a62fb09524b7ebce4cf0c2 /avconv.h | |
parent | 67afcefb35932b420998f6f3fda46c7c85848a3f (diff) | |
download | ffmpeg-1839fafa951308237c4672ffd9a94f927b26eac7.tar.gz |
avconv: Support VDA hwaccel
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -53,6 +53,7 @@ enum HWAccelID { HWACCEL_AUTO, HWACCEL_VDPAU, HWACCEL_DXVA2, + HWACCEL_VDA, }; typedef struct HWAccel { @@ -423,5 +424,6 @@ int avconv_parse_options(int argc, char **argv); int vdpau_init(AVCodecContext *s); int dxva2_init(AVCodecContext *s); +int vda_init(AVCodecContext *s); #endif /* AVCONV_H */ |