diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-25 08:14:13 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-27 08:31:16 +0200 |
commit | fa4924a35818b2564050119ed7c14cbdd2b56065 (patch) | |
tree | f63b4545f25fd2a7e48e3b48ef8d523eee6a7fda /libavformat/h264dec.c | |
parent | 4779f59378d54f30644ef79ce3a5c402546f3cb9 (diff) | |
download | ffmpeg-fa4924a35818b2564050119ed7c14cbdd2b56065.tar.gz |
rawdec: factor video demuxer definitions into a macro.
Diffstat (limited to 'libavformat/h264dec.c')
-rw-r--r-- | libavformat/h264dec.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/libavformat/h264dec.c b/libavformat/h264dec.c index 268492cf8d..f9086476d5 100644 --- a/libavformat/h264dec.c +++ b/libavformat/h264dec.c @@ -67,14 +67,4 @@ static int h264_probe(AVProbeData *p) return 0; } -AVInputFormat ff_h264_demuxer = { - "h264", - NULL_IF_CONFIG_SMALL("raw H.264 video format"), - 0, - h264_probe, - ff_raw_video_read_header, - ff_raw_read_partial_packet, - .flags= AVFMT_GENERIC_INDEX, - .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe - .value = CODEC_ID_H264, -}; +FF_DEF_RAWVIDEO_DEMUXER(h264 , "raw H.264 video format", h264_probe, "h26l,h264,264", CODEC_ID_H264) |