summaryrefslogtreecommitdiff
path: root/libavformat/allformats.c
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2015-11-07 15:59:01 -0800
committerTimothy Gu <timothygu99@gmail.com>2015-11-09 20:44:25 -0800
commit480bad7c6d087d9cd10ae4ab7b4e12cb594aa4c5 (patch)
tree51c637ae87ba2472e51c08e5f4878a6dba4bb2be /libavformat/allformats.c
parentb83c849e8797fbb972ebd7f2919e0f085061f37f (diff)
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.c2
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);