diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-04-05 14:52:52 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-04-05 15:42:24 +0000 |
commit | 4c76600a8c1d90b1381aa58a4dcd9a4fe97d6619 (patch) | |
tree | aad10be739c1743fda73d76f9f34bf9ed57d5551 /libavformat/rawdec.h | |
parent | 3d9a789b0da4778a23edb930241c584b36aaacbf (diff) | |
download | ffmpeg-4c76600a8c1d90b1381aa58a4dcd9a4fe97d6619.tar.gz |
rawdec: make use of AV_OPT_TYPE_VIDEO_RATE
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/rawdec.h')
-rw-r--r-- | libavformat/rawdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rawdec.h b/libavformat/rawdec.h index d978295ce2..59108559d3 100644 --- a/libavformat/rawdec.h +++ b/libavformat/rawdec.h @@ -30,7 +30,7 @@ typedef struct FFRawVideoDemuxerContext { const AVClass *class; /**< Class for private options. */ char *video_size; /**< String describing video size, set by a private option. */ char *pixel_format; /**< Set by a private option. */ - char *framerate; /**< String describing framerate, set by a private option. */ + AVRational framerate; /**< AVRational describing framerate, set by a private option. */ } FFRawVideoDemuxerContext; extern const AVOption ff_rawvideo_options[]; |