diff options
author | Nicolas Bertrand <nicoinattendu@gmail.com> | 2013-03-26 23:21:12 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-04 19:47:05 +0200 |
commit | 5e46f6b5b7c70e2ef67714d6423013e870a875ba (patch) | |
tree | 3a38a983f9d7da9cf5e7696e92dd348b65d8cee6 | |
parent | f8080bd13b5f7fc48204b17fa59a5ce9feb15f07 (diff) | |
download | ffmpeg-5e46f6b5b7c70e2ef67714d6423013e870a875ba.tar.gz |
img2: Add j2k file extension for JPEG 2000
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-rw-r--r-- | libavformat/img2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index 6ee8f8170e..23176d2c8c 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -62,6 +62,7 @@ static const IdStrMap img_tags[] = { { AV_CODEC_ID_SUNRAST, "sunras" }, { AV_CODEC_ID_JPEG2000, "jp2" }, { AV_CODEC_ID_JPEG2000, "jpc" }, + { AV_CODEC_ID_JPEG2000, "j2k" }, { AV_CODEC_ID_DPX, "dpx" }, { AV_CODEC_ID_PICTOR, "pic" }, { AV_CODEC_ID_XBM, "xbm" }, |