diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-11-07 15:59:01 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2015-11-09 20:44:25 -0800 |
commit | 480bad7c6d087d9cd10ae4ab7b4e12cb594aa4c5 (patch) | |
tree | 51c637ae87ba2472e51c08e5f4878a6dba4bb2be /libavformat/allformats.c | |
parent | b83c849e8797fbb972ebd7f2919e0f085061f37f (diff) | |
download | ffmpeg-480bad7c6d087d9cd10ae4ab7b4e12cb594aa4c5.tar.gz |
avformat: Add v210[x] demuxer
Allows one to do:
ffmpeg -s 1920x1080 -i blah.v210 ...
ffmpeg -s 1920x1080 -f v210x -i blah.yuv10 ...
Fixes #1869.
Reviewed-by: James Almer <jamrial@gmail.com>
Reviewed-by: Kieran Kunhya <kierank@obe.tv>
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 92e321c353..8b8d9f226a 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -314,6 +314,8 @@ void av_register_all(void) REGISTER_DEMUXER (TXD, txd); REGISTER_DEMUXER (TTY, tty); REGISTER_MUXER (UNCODEDFRAMECRC, uncodedframecrc); + REGISTER_DEMUXER (V210, v210); + REGISTER_DEMUXER (V210X, v210x); REGISTER_DEMUXER (VAG, vag); REGISTER_MUXDEMUX(VC1, vc1); REGISTER_MUXDEMUX(VC1T, vc1t); |