diff options
author | Anshul Maheswhwari <anshul.ffmpeg@gmail.com> | 2014-07-31 20:59:59 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-31 18:59:20 +0200 |
commit | fcb11ec291e9b3e3f352fa4d3e9026c0f7f64aa8 (patch) | |
tree | b1c8bfbb85a5e471e660d6d865af2f2838f88924 | |
parent | 0782fb6bcb32fe3ab956a99af4cc472ff81da0c2 (diff) | |
download | ffmpeg-fcb11ec291e9b3e3f352fa4d3e9026c0f7f64aa8.tar.gz |
v4l2enc: adding AVClass
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 efe08b589e..c9f8d92d2b 100644 --- a/libavdevice/v4l2enc.c +++ b/libavdevice/v4l2enc.c @@ -22,6 +22,7 @@ #include "avdevice.h" typedef struct { + AVClass *class; int fd; } V4L2Context; |