diff options
author | Anshul Maheswhwari <anshul.ffmpeg@gmail.com> | 2014-07-31 20:59:59 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-05 04:14:02 +0200 |
commit | 0aee436728dbcdefb7572e81a2f86618a835a5bd (patch) | |
tree | d7454d592b97a6c631b5f23a9a47fbbe61f25d0e /libavdevice | |
parent | cdaf9fb2a054519ecc56339d511863bd46c935b3 (diff) | |
download | ffmpeg-0aee436728dbcdefb7572e81a2f86618a835a5bd.tar.gz |
v4l2enc: adding AVClass
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit fcb11ec291e9b3e3f352fa4d3e9026c0f7f64aa8)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/v4l2enc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/v4l2enc.c b/libavdevice/v4l2enc.c index 21f0ef6983..db4946581e 100644 --- a/libavdevice/v4l2enc.c +++ b/libavdevice/v4l2enc.c @@ -22,6 +22,7 @@ #include "avdevice.h" typedef struct { + AVClass *class; int fd; } V4L2Context; |