You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

430 lines
16KB

  1. /*
  2. * JPEG 2000 encoding support via OpenJPEG
  3. * Copyright (c) 2011 Michael Bradshaw <mbradshaw@sorensonmedia.com>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * JPEG 2000 encoder using libopenjpeg
  24. */
  25. #define OPJ_STATIC
  26. #include <openjpeg.h>
  27. #include "libavutil/common.h"
  28. #include "libavutil/imgutils.h"
  29. #include "libavutil/intreadwrite.h"
  30. #include "libavutil/opt.h"
  31. #include "avcodec.h"
  32. #include "internal.h"
  33. typedef struct LibOpenJPEGContext {
  34. AVClass *avclass;
  35. opj_image_t *image;
  36. opj_cparameters_t enc_params;
  37. opj_cinfo_t *compress;
  38. opj_event_mgr_t event_mgr;
  39. int format;
  40. int profile;
  41. int prog_order;
  42. int cinema_mode;
  43. int numresolution;
  44. int numlayers;
  45. int disto_alloc;
  46. int fixed_alloc;
  47. int fixed_quality;
  48. } LibOpenJPEGContext;
  49. static void error_callback(const char *msg, void *data)
  50. {
  51. av_log(data, AV_LOG_ERROR, "%s\n", msg);
  52. }
  53. static void warning_callback(const char *msg, void *data)
  54. {
  55. av_log(data, AV_LOG_WARNING, "%s\n", msg);
  56. }
  57. static void info_callback(const char *msg, void *data)
  58. {
  59. av_log(data, AV_LOG_DEBUG, "%s\n", msg);
  60. }
  61. static opj_image_t *libopenjpeg_create_image(AVCodecContext *avctx,
  62. opj_cparameters_t *parameters)
  63. {
  64. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
  65. opj_image_cmptparm_t *cmptparm;
  66. OPJ_COLOR_SPACE color_space;
  67. opj_image_t *img;
  68. int i;
  69. int sub_dx[4];
  70. int sub_dy[4];
  71. int numcomps = desc->nb_components;
  72. sub_dx[0] =
  73. sub_dx[3] = 1;
  74. sub_dy[0] =
  75. sub_dy[3] = 1;
  76. sub_dx[1] =
  77. sub_dx[2] = 1 << desc->log2_chroma_w;
  78. sub_dy[1] =
  79. sub_dy[2] = 1 << desc->log2_chroma_h;
  80. switch (avctx->pix_fmt) {
  81. case AV_PIX_FMT_GRAY8:
  82. case AV_PIX_FMT_GRAY16:
  83. case AV_PIX_FMT_YA8:
  84. color_space = CLRSPC_GRAY;
  85. break;
  86. case AV_PIX_FMT_RGB24:
  87. case AV_PIX_FMT_RGBA:
  88. case AV_PIX_FMT_RGB48:
  89. case AV_PIX_FMT_RGBA64:
  90. color_space = CLRSPC_SRGB;
  91. break;
  92. case AV_PIX_FMT_YUV410P:
  93. case AV_PIX_FMT_YUV411P:
  94. case AV_PIX_FMT_YUV420P:
  95. case AV_PIX_FMT_YUV422P:
  96. case AV_PIX_FMT_YUV440P:
  97. case AV_PIX_FMT_YUV444P:
  98. case AV_PIX_FMT_YUVA420P:
  99. case AV_PIX_FMT_YUV420P9:
  100. case AV_PIX_FMT_YUV422P9:
  101. case AV_PIX_FMT_YUV444P9:
  102. case AV_PIX_FMT_YUV420P10:
  103. case AV_PIX_FMT_YUV422P10:
  104. case AV_PIX_FMT_YUV444P10:
  105. case AV_PIX_FMT_YUV420P16:
  106. case AV_PIX_FMT_YUV422P16:
  107. case AV_PIX_FMT_YUV444P16:
  108. color_space = CLRSPC_SYCC;
  109. break;
  110. default:
  111. av_log(avctx, AV_LOG_ERROR,
  112. "The requested pixel format '%s' is not supported\n",
  113. av_get_pix_fmt_name(avctx->pix_fmt));
  114. return NULL;
  115. }
  116. cmptparm = av_mallocz(numcomps * sizeof(*cmptparm));
  117. if (!cmptparm) {
  118. av_log(avctx, AV_LOG_ERROR, "Not enough memory");
  119. return NULL;
  120. }
  121. for (i = 0; i < numcomps; i++) {
  122. cmptparm[i].prec = desc->comp[i].depth;
  123. cmptparm[i].bpp = desc->comp[i].depth;
  124. cmptparm[i].sgnd = 0;
  125. cmptparm[i].dx = sub_dx[i];
  126. cmptparm[i].dy = sub_dy[i];
  127. cmptparm[i].w = avctx->width / sub_dx[i];
  128. cmptparm[i].h = avctx->height / sub_dy[i];
  129. }
  130. img = opj_image_create(numcomps, cmptparm, color_space);
  131. av_freep(&cmptparm);
  132. return img;
  133. }
  134. static av_cold int libopenjpeg_encode_init(AVCodecContext *avctx)
  135. {
  136. LibOpenJPEGContext *ctx = avctx->priv_data;
  137. int err = AVERROR(ENOMEM);
  138. opj_set_default_encoder_parameters(&ctx->enc_params);
  139. ctx->enc_params.cp_rsiz = ctx->profile;
  140. ctx->enc_params.mode = !!avctx->global_quality;
  141. ctx->enc_params.cp_cinema = ctx->cinema_mode;
  142. ctx->enc_params.prog_order = ctx->prog_order;
  143. ctx->enc_params.numresolution = ctx->numresolution;
  144. ctx->enc_params.cp_disto_alloc = ctx->disto_alloc;
  145. ctx->enc_params.cp_fixed_alloc = ctx->fixed_alloc;
  146. ctx->enc_params.cp_fixed_quality = ctx->fixed_quality;
  147. ctx->enc_params.tcp_numlayers = ctx->numlayers;
  148. ctx->enc_params.tcp_rates[0] = FFMAX(avctx->compression_level, 0) * 2;
  149. ctx->compress = opj_create_compress(ctx->format);
  150. if (!ctx->compress) {
  151. av_log(avctx, AV_LOG_ERROR, "Error creating the compressor\n");
  152. return AVERROR(ENOMEM);
  153. }
  154. ctx->image = libopenjpeg_create_image(avctx, &ctx->enc_params);
  155. if (!ctx->image) {
  156. av_log(avctx, AV_LOG_ERROR, "Error creating the mj2 image\n");
  157. err = AVERROR(EINVAL);
  158. goto fail;
  159. }
  160. ctx->event_mgr.info_handler = info_callback;
  161. ctx->event_mgr.error_handler = error_callback;
  162. ctx->event_mgr.warning_handler = warning_callback;
  163. opj_set_event_mgr((opj_common_ptr) ctx->compress, &ctx->event_mgr, avctx);
  164. return 0;
  165. fail:
  166. av_freep(&ctx->compress);
  167. return err;
  168. }
  169. static void libopenjpeg_copy_packed8(AVCodecContext *avctx,
  170. const AVFrame *frame, opj_image_t *image)
  171. {
  172. int compno;
  173. int x, y;
  174. int image_index, frame_index;
  175. const int numcomps = image->numcomps;
  176. for (compno = 0; compno < numcomps; ++compno)
  177. for (y = 0; y < avctx->height; ++y) {
  178. image_index = y * avctx->width;
  179. frame_index = y * frame->linesize[0] + compno;
  180. for (x = 0; x < avctx->width; ++x) {
  181. image->comps[compno].data[image_index++] =
  182. frame->data[0][frame_index];
  183. frame_index += numcomps;
  184. }
  185. }
  186. }
  187. static void libopenjpeg_copy_packed16(AVCodecContext *avctx,
  188. const AVFrame *frame, opj_image_t *image)
  189. {
  190. int compno;
  191. int x, y;
  192. int image_index, frame_index;
  193. const int numcomps = image->numcomps;
  194. uint16_t *frame_ptr = (uint16_t *)frame->data[0];
  195. for (compno = 0; compno < numcomps; ++compno)
  196. for (y = 0; y < avctx->height; ++y) {
  197. image_index = y * avctx->width;
  198. frame_index = y * (frame->linesize[0] / 2) + compno;
  199. for (x = 0; x < avctx->width; ++x) {
  200. image->comps[compno].data[image_index++] =
  201. frame_ptr[frame_index];
  202. frame_index += numcomps;
  203. }
  204. }
  205. }
  206. static void libopenjpeg_copy_unpacked8(AVCodecContext *avctx,
  207. const AVFrame *frame, opj_image_t *image)
  208. {
  209. int compno;
  210. int x, y;
  211. int width, height;
  212. int image_index, frame_index;
  213. const int numcomps = image->numcomps;
  214. for (compno = 0; compno < numcomps; ++compno) {
  215. width = avctx->width / image->comps[compno].dx;
  216. height = avctx->height / image->comps[compno].dy;
  217. for (y = 0; y < height; ++y) {
  218. image_index = y * width;
  219. frame_index = y * frame->linesize[compno];
  220. for (x = 0; x < width; ++x)
  221. image->comps[compno].data[image_index++] =
  222. frame->data[compno][frame_index++];
  223. }
  224. }
  225. }
  226. static void libopenjpeg_copy_unpacked16(AVCodecContext *avctx,
  227. const AVFrame *frame,
  228. opj_image_t *image)
  229. {
  230. int compno;
  231. int x, y;
  232. int width, height;
  233. int image_index, frame_index;
  234. const int numcomps = image->numcomps;
  235. uint16_t *frame_ptr;
  236. for (compno = 0; compno < numcomps; ++compno) {
  237. width = avctx->width / image->comps[compno].dx;
  238. height = avctx->height / image->comps[compno].dy;
  239. frame_ptr = (uint16_t *)frame->data[compno];
  240. for (y = 0; y < height; ++y) {
  241. image_index = y * width;
  242. frame_index = y * (frame->linesize[compno] / 2);
  243. for (x = 0; x < width; ++x)
  244. image->comps[compno].data[image_index++] =
  245. frame_ptr[frame_index++];
  246. }
  247. }
  248. }
  249. static int libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  250. const AVFrame *frame, int *got_packet)
  251. {
  252. LibOpenJPEGContext *ctx = avctx->priv_data;
  253. opj_cinfo_t *compress = ctx->compress;
  254. opj_image_t *image = ctx->image;
  255. opj_cio_t *stream;
  256. int ret, len;
  257. // x0, y0 is the top left corner of the image
  258. // x1, y1 is the width, height of the reference grid
  259. image->x0 = 0;
  260. image->y0 = 0;
  261. image->x1 = (avctx->width - 1) * ctx->enc_params.subsampling_dx + 1;
  262. image->y1 = (avctx->height - 1) * ctx->enc_params.subsampling_dy + 1;
  263. switch (avctx->pix_fmt) {
  264. case AV_PIX_FMT_RGB24:
  265. case AV_PIX_FMT_RGBA:
  266. case AV_PIX_FMT_YA8:
  267. libopenjpeg_copy_packed8(avctx, frame, image);
  268. break;
  269. case AV_PIX_FMT_RGB48:
  270. case AV_PIX_FMT_RGBA64:
  271. libopenjpeg_copy_packed16(avctx, frame, image);
  272. break;
  273. case AV_PIX_FMT_GRAY8:
  274. case AV_PIX_FMT_YUV410P:
  275. case AV_PIX_FMT_YUV411P:
  276. case AV_PIX_FMT_YUV420P:
  277. case AV_PIX_FMT_YUV422P:
  278. case AV_PIX_FMT_YUV440P:
  279. case AV_PIX_FMT_YUV444P:
  280. case AV_PIX_FMT_YUVA420P:
  281. libopenjpeg_copy_unpacked8(avctx, frame, image);
  282. break;
  283. case AV_PIX_FMT_GRAY16:
  284. case AV_PIX_FMT_YUV420P9:
  285. case AV_PIX_FMT_YUV422P9:
  286. case AV_PIX_FMT_YUV444P9:
  287. case AV_PIX_FMT_YUV444P10:
  288. case AV_PIX_FMT_YUV422P10:
  289. case AV_PIX_FMT_YUV420P10:
  290. case AV_PIX_FMT_YUV444P16:
  291. case AV_PIX_FMT_YUV422P16:
  292. case AV_PIX_FMT_YUV420P16:
  293. libopenjpeg_copy_unpacked16(avctx, frame, image);
  294. break;
  295. default:
  296. av_log(avctx, AV_LOG_ERROR,
  297. "The frame's pixel format '%s' is not supported\n",
  298. av_get_pix_fmt_name(avctx->pix_fmt));
  299. return AVERROR(EINVAL);
  300. break;
  301. }
  302. opj_setup_encoder(compress, &ctx->enc_params, image);
  303. stream = opj_cio_open((opj_common_ptr) compress, NULL, 0);
  304. if (!stream) {
  305. av_log(avctx, AV_LOG_ERROR, "Error creating the cio stream\n");
  306. return AVERROR(ENOMEM);
  307. }
  308. if (!opj_encode(compress, stream, image, NULL)) {
  309. opj_cio_close(stream);
  310. av_log(avctx, AV_LOG_ERROR, "Error during the opj encode\n");
  311. return -1;
  312. }
  313. len = cio_tell(stream);
  314. if ((ret = ff_alloc_packet(pkt, len)) < 0) {
  315. opj_cio_close(stream);
  316. return ret;
  317. }
  318. memcpy(pkt->data, stream->buffer, len);
  319. pkt->flags |= AV_PKT_FLAG_KEY;
  320. *got_packet = 1;
  321. opj_cio_close(stream);
  322. return 0;
  323. }
  324. static av_cold int libopenjpeg_encode_close(AVCodecContext *avctx)
  325. {
  326. LibOpenJPEGContext *ctx = avctx->priv_data;
  327. opj_destroy_compress(ctx->compress);
  328. opj_image_destroy(ctx->image);
  329. return 0;
  330. }
  331. #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
  332. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  333. static const AVOption options[] = {
  334. { "format", "Codec Format", OFFSET(format), AV_OPT_TYPE_INT, { .i64 = CODEC_JP2 }, CODEC_J2K, CODEC_JP2, VE, "format" },
  335. { "j2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_J2K }, 0, 0, VE, "format" },
  336. { "jp2", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_JP2 }, 0, 0, VE, "format" },
  337. { "profile", NULL, OFFSET(profile), AV_OPT_TYPE_INT, { .i64 = STD_RSIZ }, STD_RSIZ, CINEMA4K, VE, "profile" },
  338. { "jpeg2000", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = STD_RSIZ }, 0, 0, VE, "profile" },
  339. { "cinema2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K }, 0, 0, VE, "profile" },
  340. { "cinema4k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA4K }, 0, 0, VE, "profile" },
  341. { "cinema_mode", "Digital Cinema", OFFSET(cinema_mode), AV_OPT_TYPE_INT, { .i64 = OFF }, OFF, CINEMA4K_24, VE, "cinema_mode" },
  342. { "off", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = OFF }, 0, 0, VE, "cinema_mode" },
  343. { "2k_24", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_24 }, 0, 0, VE, "cinema_mode" },
  344. { "2k_48", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_48 }, 0, 0, VE, "cinema_mode" },
  345. { "4k_24", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA4K_24 }, 0, 0, VE, "cinema_mode" },
  346. { "prog_order", "Progression Order", OFFSET(prog_order), AV_OPT_TYPE_INT, { .i64 = LRCP }, LRCP, CPRL, VE, "prog_order" },
  347. { "lrcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LRCP }, 0, 0, VE, "prog_order" },
  348. { "rlcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = RLCP }, 0, 0, VE, "prog_order" },
  349. { "rpcl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = RPCL }, 0, 0, VE, "prog_order" },
  350. { "pcrl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PCRL }, 0, 0, VE, "prog_order" },
  351. { "cprl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPRL }, 0, 0, VE, "prog_order" },
  352. { "numresolution", NULL, OFFSET(numresolution), AV_OPT_TYPE_INT, { .i64 = 6 }, 1, 10, VE },
  353. { "numlayers", NULL, OFFSET(numlayers), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, 10, VE },
  354. { "disto_alloc", NULL, OFFSET(disto_alloc), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },
  355. { "fixed_alloc", NULL, OFFSET(fixed_alloc), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
  356. { "fixed_quality", NULL, OFFSET(fixed_quality), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
  357. { NULL },
  358. };
  359. static const AVClass class = {
  360. .class_name = "libopenjpeg",
  361. .item_name = av_default_item_name,
  362. .option = options,
  363. .version = LIBAVUTIL_VERSION_INT,
  364. };
  365. AVCodec ff_libopenjpeg_encoder = {
  366. .name = "libopenjpeg",
  367. .long_name = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
  368. .type = AVMEDIA_TYPE_VIDEO,
  369. .id = AV_CODEC_ID_JPEG2000,
  370. .priv_data_size = sizeof(LibOpenJPEGContext),
  371. .init = libopenjpeg_encode_init,
  372. .encode2 = libopenjpeg_encode_frame,
  373. .close = libopenjpeg_encode_close,
  374. .capabilities = 0,
  375. .pix_fmts = (const enum AVPixelFormat[]) {
  376. AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, AV_PIX_FMT_RGB48,
  377. AV_PIX_FMT_RGBA64,
  378. AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA8,
  379. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA420P,
  380. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P,
  381. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  382. AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
  383. AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
  384. AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
  385. AV_PIX_FMT_NONE
  386. },
  387. .priv_class = &class,
  388. };