diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-04 07:38:01 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-12 16:51:16 +0200 |
commit | 145f741e115c75eac511e0ceb7a3c44585e871e3 (patch) | |
tree | 5a9dae8f2a3de7c1652b85a4ec6242a1f1f2ede6 /libavdevice/vfwcap.c | |
parent | 3b3ea34655db02d9cd9ea1a4122e920a7fdec602 (diff) | |
download | ffmpeg-145f741e115c75eac511e0ceb7a3c44585e871e3.tar.gz |
AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*
Diffstat (limited to 'libavdevice/vfwcap.c')
-rw-r--r-- | libavdevice/vfwcap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavdevice/vfwcap.c b/libavdevice/vfwcap.c index 4faf2d937d..61b038323c 100644 --- a/libavdevice/vfwcap.c +++ b/libavdevice/vfwcap.c @@ -457,8 +457,8 @@ static int vfw_read_packet(AVFormatContext *s, AVPacket *pkt) #define OFFSET(x) offsetof(struct vfw_ctx, x) #define DEC AV_OPT_FLAG_DECODING_PARAM static const AVOption options[] = { - { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), FF_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, - { "framerate", "", OFFSET(framerate), FF_OPT_TYPE_STRING, {.str = "ntsc"}, 0, 0, DEC }, + { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, + { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "ntsc"}, 0, 0, DEC }, { NULL }, }; |