Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean First <jeanfirst@gmail.com>2012-01-22 04:11:42 +0400
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-03-17 02:31:29 +0400
commit6d78e852fbf3cab438a2085bcb64b90457c4a851 (patch)
tree4f6e358e90a51cfa93328240e819af5b0ba2873c /libavformat/img2enc.c
parent58c215961a9067bb670387bbd72286c30de04b93 (diff)
img2: add j2c file extension
Some applications use the j2c extension for jpeg2000 codestream files.
Diffstat (limited to 'libavformat/img2enc.c')
-rw-r--r--libavformat/img2enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/img2enc.c b/libavformat/img2enc.c
index 4cc5c3feac..f4a80aa999 100644
--- a/libavformat/img2enc.c
+++ b/libavformat/img2enc.c
@@ -148,7 +148,7 @@ AVOutputFormat ff_image2_muxer = {
.long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
.extensions = "bmp,dpx,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
"ppm,sgi,tga,tif,tiff,jp2,xwd,sun,ras,rs,im1,im8,im24,"
- "sunras,webp,xbm",
+ "sunras,webp,xbm,j2c",
.priv_data_size = sizeof(VideoMuxData),
.video_codec = AV_CODEC_ID_MJPEG,
.write_header = write_header,