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.

525 lines
19KB

  1. /*
  2. * JPEG 2000 encoding support via OpenJPEG
  3. * Copyright (c) 2011 Michael Bradshaw <mjbshaw gmail com>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 "libavutil/avassert.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. #if HAVE_OPENJPEG_1_5_OPENJPEG_H
  34. # include <openjpeg-1.5/openjpeg.h>
  35. #else
  36. # include <openjpeg.h>
  37. #endif
  38. typedef struct {
  39. AVClass *avclass;
  40. opj_image_t *image;
  41. opj_cparameters_t enc_params;
  42. opj_cinfo_t *compress;
  43. opj_event_mgr_t event_mgr;
  44. int format;
  45. int profile;
  46. int prog_order;
  47. int cinema_mode;
  48. int numresolution;
  49. int numlayers;
  50. int disto_alloc;
  51. int fixed_alloc;
  52. int fixed_quality;
  53. } LibOpenJPEGContext;
  54. static void error_callback(const char *msg, void *data)
  55. {
  56. av_log(data, AV_LOG_ERROR, "%s\n", msg);
  57. }
  58. static void warning_callback(const char *msg, void *data)
  59. {
  60. av_log(data, AV_LOG_WARNING, "%s\n", msg);
  61. }
  62. static void info_callback(const char *msg, void *data)
  63. {
  64. av_log(data, AV_LOG_DEBUG, "%s\n", msg);
  65. }
  66. static opj_image_t *mj2_create_image(AVCodecContext *avctx, opj_cparameters_t *parameters)
  67. {
  68. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
  69. opj_image_cmptparm_t *cmptparm;
  70. opj_image_t *img;
  71. int i;
  72. int sub_dx[4];
  73. int sub_dy[4];
  74. int numcomps;
  75. OPJ_COLOR_SPACE color_space = CLRSPC_UNKNOWN;
  76. sub_dx[0] = sub_dx[3] = 1;
  77. sub_dy[0] = sub_dy[3] = 1;
  78. sub_dx[1] = sub_dx[2] = 1 << desc->log2_chroma_w;
  79. sub_dy[1] = sub_dy[2] = 1 << desc->log2_chroma_h;
  80. numcomps = desc->nb_components;
  81. switch (avctx->pix_fmt) {
  82. case AV_PIX_FMT_GRAY8:
  83. case AV_PIX_FMT_GRAY8A:
  84. case AV_PIX_FMT_GRAY16:
  85. color_space = CLRSPC_GRAY;
  86. break;
  87. case AV_PIX_FMT_RGB24:
  88. case AV_PIX_FMT_RGBA:
  89. case AV_PIX_FMT_RGB48:
  90. case AV_PIX_FMT_RGBA64:
  91. color_space = CLRSPC_SRGB;
  92. break;
  93. case AV_PIX_FMT_YUV410P:
  94. case AV_PIX_FMT_YUV411P:
  95. case AV_PIX_FMT_YUV420P:
  96. case AV_PIX_FMT_YUV422P:
  97. case AV_PIX_FMT_YUV440P:
  98. case AV_PIX_FMT_YUV444P:
  99. case AV_PIX_FMT_YUVA420P:
  100. case AV_PIX_FMT_YUVA422P:
  101. case AV_PIX_FMT_YUVA444P:
  102. case AV_PIX_FMT_YUV420P9:
  103. case AV_PIX_FMT_YUV422P9:
  104. case AV_PIX_FMT_YUV444P9:
  105. case AV_PIX_FMT_YUVA420P9:
  106. case AV_PIX_FMT_YUVA422P9:
  107. case AV_PIX_FMT_YUVA444P9:
  108. case AV_PIX_FMT_YUV420P10:
  109. case AV_PIX_FMT_YUV422P10:
  110. case AV_PIX_FMT_YUV444P10:
  111. case AV_PIX_FMT_YUVA420P10:
  112. case AV_PIX_FMT_YUVA422P10:
  113. case AV_PIX_FMT_YUVA444P10:
  114. case AV_PIX_FMT_YUV420P12:
  115. case AV_PIX_FMT_YUV422P12:
  116. case AV_PIX_FMT_YUV444P12:
  117. case AV_PIX_FMT_YUV420P14:
  118. case AV_PIX_FMT_YUV422P14:
  119. case AV_PIX_FMT_YUV444P14:
  120. case AV_PIX_FMT_YUV420P16:
  121. case AV_PIX_FMT_YUV422P16:
  122. case AV_PIX_FMT_YUV444P16:
  123. case AV_PIX_FMT_YUVA420P16:
  124. case AV_PIX_FMT_YUVA422P16:
  125. case AV_PIX_FMT_YUVA444P16:
  126. color_space = CLRSPC_SYCC;
  127. break;
  128. default:
  129. av_log(avctx, AV_LOG_ERROR,
  130. "The requested pixel format '%s' is not supported\n",
  131. av_get_pix_fmt_name(avctx->pix_fmt));
  132. return NULL;
  133. }
  134. cmptparm = av_mallocz(numcomps * sizeof(*cmptparm));
  135. if (!cmptparm) {
  136. av_log(avctx, AV_LOG_ERROR, "Not enough memory\n");
  137. return NULL;
  138. }
  139. for (i = 0; i < numcomps; i++) {
  140. cmptparm[i].prec = desc->comp[i].depth_minus1 + 1;
  141. cmptparm[i].bpp = desc->comp[i].depth_minus1 + 1;
  142. cmptparm[i].sgnd = 0;
  143. cmptparm[i].dx = sub_dx[i];
  144. cmptparm[i].dy = sub_dy[i];
  145. cmptparm[i].w = avctx->width / sub_dx[i];
  146. cmptparm[i].h = avctx->height / sub_dy[i];
  147. }
  148. img = opj_image_create(numcomps, cmptparm, color_space);
  149. av_freep(&cmptparm);
  150. return img;
  151. }
  152. static av_cold int libopenjpeg_encode_init(AVCodecContext *avctx)
  153. {
  154. LibOpenJPEGContext *ctx = avctx->priv_data;
  155. int err = AVERROR(ENOMEM);
  156. opj_set_default_encoder_parameters(&ctx->enc_params);
  157. ctx->enc_params.cp_rsiz = ctx->profile;
  158. ctx->enc_params.mode = !!avctx->global_quality;
  159. ctx->enc_params.cp_cinema = ctx->cinema_mode;
  160. ctx->enc_params.prog_order = ctx->prog_order;
  161. ctx->enc_params.numresolution = ctx->numresolution;
  162. ctx->enc_params.cp_disto_alloc = ctx->disto_alloc;
  163. ctx->enc_params.cp_fixed_alloc = ctx->fixed_alloc;
  164. ctx->enc_params.cp_fixed_quality = ctx->fixed_quality;
  165. ctx->enc_params.tcp_numlayers = ctx->numlayers;
  166. ctx->enc_params.tcp_rates[0] = FFMAX(avctx->compression_level, 0) * 2;
  167. ctx->compress = opj_create_compress(ctx->format);
  168. if (!ctx->compress) {
  169. av_log(avctx, AV_LOG_ERROR, "Error creating the compressor\n");
  170. return AVERROR(ENOMEM);
  171. }
  172. avctx->coded_frame = avcodec_alloc_frame();
  173. if (!avctx->coded_frame) {
  174. av_log(avctx, AV_LOG_ERROR, "Error allocating coded frame\n");
  175. goto fail;
  176. }
  177. ctx->image = mj2_create_image(avctx, &ctx->enc_params);
  178. if (!ctx->image) {
  179. av_log(avctx, AV_LOG_ERROR, "Error creating the mj2 image\n");
  180. err = AVERROR(EINVAL);
  181. goto fail;
  182. }
  183. memset(&ctx->event_mgr, 0, sizeof(opj_event_mgr_t));
  184. ctx->event_mgr.info_handler = info_callback;
  185. ctx->event_mgr.error_handler = error_callback;
  186. ctx->event_mgr.warning_handler = warning_callback;
  187. opj_set_event_mgr((opj_common_ptr)ctx->compress, &ctx->event_mgr, avctx);
  188. return 0;
  189. fail:
  190. av_freep(&ctx->compress);
  191. av_freep(&avctx->coded_frame);
  192. return err;
  193. }
  194. static int libopenjpeg_copy_packed8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
  195. {
  196. int compno;
  197. int x;
  198. int y;
  199. int image_index;
  200. int frame_index;
  201. const int numcomps = image->numcomps;
  202. for (compno = 0; compno < numcomps; ++compno) {
  203. if (image->comps[compno].w > frame->linesize[0] / numcomps) {
  204. av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
  205. return 0;
  206. }
  207. }
  208. for (compno = 0; compno < numcomps; ++compno) {
  209. for (y = 0; y < avctx->height; ++y) {
  210. image_index = y * avctx->width;
  211. frame_index = y * frame->linesize[0] + compno;
  212. for (x = 0; x < avctx->width; ++x) {
  213. image->comps[compno].data[image_index++] = frame->data[0][frame_index];
  214. frame_index += numcomps;
  215. }
  216. }
  217. }
  218. return 1;
  219. }
  220. static int libopenjpeg_copy_packed16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
  221. {
  222. int compno;
  223. int x;
  224. int y;
  225. int image_index;
  226. int frame_index;
  227. const int numcomps = image->numcomps;
  228. uint16_t *frame_ptr = (uint16_t*)frame->data[0];
  229. for (compno = 0; compno < numcomps; ++compno) {
  230. if (image->comps[compno].w > frame->linesize[0] / numcomps) {
  231. av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
  232. return 0;
  233. }
  234. }
  235. for (compno = 0; compno < numcomps; ++compno) {
  236. for (y = 0; y < avctx->height; ++y) {
  237. image_index = y * avctx->width;
  238. frame_index = y * (frame->linesize[0] / 2) + compno;
  239. for (x = 0; x < avctx->width; ++x) {
  240. image->comps[compno].data[image_index++] = frame_ptr[frame_index];
  241. frame_index += numcomps;
  242. }
  243. }
  244. }
  245. return 1;
  246. }
  247. static int libopenjpeg_copy_unpacked8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
  248. {
  249. int compno;
  250. int x;
  251. int y;
  252. int width;
  253. int height;
  254. int image_index;
  255. int frame_index;
  256. const int numcomps = image->numcomps;
  257. for (compno = 0; compno < numcomps; ++compno) {
  258. if (image->comps[compno].w > frame->linesize[compno]) {
  259. av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
  260. return 0;
  261. }
  262. }
  263. for (compno = 0; compno < numcomps; ++compno) {
  264. width = avctx->width / image->comps[compno].dx;
  265. height = avctx->height / image->comps[compno].dy;
  266. for (y = 0; y < height; ++y) {
  267. image_index = y * width;
  268. frame_index = y * frame->linesize[compno];
  269. for (x = 0; x < width; ++x)
  270. image->comps[compno].data[image_index++] = frame->data[compno][frame_index++];
  271. }
  272. }
  273. return 1;
  274. }
  275. static int libopenjpeg_copy_unpacked16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
  276. {
  277. int compno;
  278. int x;
  279. int y;
  280. int width;
  281. int height;
  282. int image_index;
  283. int frame_index;
  284. const int numcomps = image->numcomps;
  285. uint16_t *frame_ptr;
  286. for (compno = 0; compno < numcomps; ++compno) {
  287. if (image->comps[compno].w > frame->linesize[compno]) {
  288. av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
  289. return 0;
  290. }
  291. }
  292. for (compno = 0; compno < numcomps; ++compno) {
  293. width = avctx->width / image->comps[compno].dx;
  294. height = avctx->height / image->comps[compno].dy;
  295. frame_ptr = (uint16_t*)frame->data[compno];
  296. for (y = 0; y < height; ++y) {
  297. image_index = y * width;
  298. frame_index = y * (frame->linesize[compno] / 2);
  299. for (x = 0; x < width; ++x)
  300. image->comps[compno].data[image_index++] = frame_ptr[frame_index++];
  301. }
  302. }
  303. return 1;
  304. }
  305. static int libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  306. const AVFrame *frame, int *got_packet)
  307. {
  308. LibOpenJPEGContext *ctx = avctx->priv_data;
  309. opj_cinfo_t *compress = ctx->compress;
  310. opj_image_t *image = ctx->image;
  311. opj_cio_t *stream;
  312. int cpyresult = 0;
  313. int ret, len;
  314. // x0, y0 is the top left corner of the image
  315. // x1, y1 is the width, height of the reference grid
  316. image->x0 = 0;
  317. image->y0 = 0;
  318. image->x1 = (avctx->width - 1) * ctx->enc_params.subsampling_dx + 1;
  319. image->y1 = (avctx->height - 1) * ctx->enc_params.subsampling_dy + 1;
  320. switch (avctx->pix_fmt) {
  321. case AV_PIX_FMT_RGB24:
  322. case AV_PIX_FMT_RGBA:
  323. case AV_PIX_FMT_GRAY8A:
  324. cpyresult = libopenjpeg_copy_packed8(avctx, frame, image);
  325. break;
  326. case AV_PIX_FMT_RGB48:
  327. case AV_PIX_FMT_RGBA64:
  328. cpyresult = libopenjpeg_copy_packed16(avctx, frame, image);
  329. break;
  330. case AV_PIX_FMT_GRAY8:
  331. case AV_PIX_FMT_YUV410P:
  332. case AV_PIX_FMT_YUV411P:
  333. case AV_PIX_FMT_YUV420P:
  334. case AV_PIX_FMT_YUV422P:
  335. case AV_PIX_FMT_YUV440P:
  336. case AV_PIX_FMT_YUV444P:
  337. case AV_PIX_FMT_YUVA420P:
  338. case AV_PIX_FMT_YUVA422P:
  339. case AV_PIX_FMT_YUVA444P:
  340. cpyresult = libopenjpeg_copy_unpacked8(avctx, frame, image);
  341. break;
  342. case AV_PIX_FMT_GRAY16:
  343. case AV_PIX_FMT_YUV420P9:
  344. case AV_PIX_FMT_YUV422P9:
  345. case AV_PIX_FMT_YUV444P9:
  346. case AV_PIX_FMT_YUVA420P9:
  347. case AV_PIX_FMT_YUVA422P9:
  348. case AV_PIX_FMT_YUVA444P9:
  349. case AV_PIX_FMT_YUV444P10:
  350. case AV_PIX_FMT_YUV422P10:
  351. case AV_PIX_FMT_YUV420P10:
  352. case AV_PIX_FMT_YUVA444P10:
  353. case AV_PIX_FMT_YUVA422P10:
  354. case AV_PIX_FMT_YUVA420P10:
  355. case AV_PIX_FMT_YUV420P12:
  356. case AV_PIX_FMT_YUV422P12:
  357. case AV_PIX_FMT_YUV444P12:
  358. case AV_PIX_FMT_YUV420P14:
  359. case AV_PIX_FMT_YUV422P14:
  360. case AV_PIX_FMT_YUV444P14:
  361. case AV_PIX_FMT_YUV444P16:
  362. case AV_PIX_FMT_YUV422P16:
  363. case AV_PIX_FMT_YUV420P16:
  364. case AV_PIX_FMT_YUVA444P16:
  365. case AV_PIX_FMT_YUVA422P16:
  366. case AV_PIX_FMT_YUVA420P16:
  367. cpyresult = libopenjpeg_copy_unpacked16(avctx, frame, image);
  368. break;
  369. default:
  370. av_log(avctx, AV_LOG_ERROR,
  371. "The frame's pixel format '%s' is not supported\n",
  372. av_get_pix_fmt_name(avctx->pix_fmt));
  373. return AVERROR(EINVAL);
  374. break;
  375. }
  376. if (!cpyresult) {
  377. av_log(avctx, AV_LOG_ERROR,
  378. "Could not copy the frame data to the internal image buffer\n");
  379. return -1;
  380. }
  381. opj_setup_encoder(compress, &ctx->enc_params, image);
  382. stream = opj_cio_open((opj_common_ptr)compress, NULL, 0);
  383. if (!stream) {
  384. av_log(avctx, AV_LOG_ERROR, "Error creating the cio stream\n");
  385. return AVERROR(ENOMEM);
  386. }
  387. if (!opj_encode(compress, stream, image, NULL)) {
  388. opj_cio_close(stream);
  389. av_log(avctx, AV_LOG_ERROR, "Error during the opj encode\n");
  390. return -1;
  391. }
  392. len = cio_tell(stream);
  393. if ((ret = ff_alloc_packet2(avctx, pkt, len)) < 0) {
  394. opj_cio_close(stream);
  395. return ret;
  396. }
  397. memcpy(pkt->data, stream->buffer, len);
  398. pkt->flags |= AV_PKT_FLAG_KEY;
  399. *got_packet = 1;
  400. opj_cio_close(stream);
  401. return 0;
  402. }
  403. static av_cold int libopenjpeg_encode_close(AVCodecContext *avctx)
  404. {
  405. LibOpenJPEGContext *ctx = avctx->priv_data;
  406. opj_destroy_compress(ctx->compress);
  407. opj_image_destroy(ctx->image);
  408. av_freep(&avctx->coded_frame);
  409. return 0;
  410. }
  411. #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
  412. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  413. static const AVOption options[] = {
  414. { "format", "Codec Format", OFFSET(format), AV_OPT_TYPE_INT, { .i64 = CODEC_JP2 }, CODEC_J2K, CODEC_JP2, VE, "format" },
  415. { "j2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_J2K }, 0, 0, VE, "format" },
  416. { "jp2", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_JP2 }, 0, 0, VE, "format" },
  417. { "profile", NULL, OFFSET(profile), AV_OPT_TYPE_INT, { .i64 = STD_RSIZ }, STD_RSIZ, CINEMA4K, VE, "profile" },
  418. { "jpeg2000", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = STD_RSIZ }, 0, 0, VE, "profile" },
  419. { "cinema2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K }, 0, 0, VE, "profile" },
  420. { "cinema4k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA4K }, 0, 0, VE, "profile" },
  421. { "cinema_mode", "Digital Cinema", OFFSET(cinema_mode), AV_OPT_TYPE_INT, { .i64 = OFF }, OFF, CINEMA4K_24, VE, "cinema_mode" },
  422. { "off", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = OFF }, 0, 0, VE, "cinema_mode" },
  423. { "2k_24", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_24 }, 0, 0, VE, "cinema_mode" },
  424. { "2k_48", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_48 }, 0, 0, VE, "cinema_mode" },
  425. { "4k_24", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA4K_24 }, 0, 0, VE, "cinema_mode" },
  426. { "prog_order", "Progression Order", OFFSET(prog_order), AV_OPT_TYPE_INT, { .i64 = LRCP }, LRCP, CPRL, VE, "prog_order" },
  427. { "lrcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LRCP }, 0, 0, VE, "prog_order" },
  428. { "rlcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = RLCP }, 0, 0, VE, "prog_order" },
  429. { "rpcl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = RPCL }, 0, 0, VE, "prog_order" },
  430. { "pcrl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PCRL }, 0, 0, VE, "prog_order" },
  431. { "cprl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPRL }, 0, 0, VE, "prog_order" },
  432. { "numresolution", NULL, OFFSET(numresolution), AV_OPT_TYPE_INT, { .i64 = 6 }, 1, INT_MAX, VE },
  433. { "numlayers", NULL, OFFSET(numlayers), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, 10, VE },
  434. { "disto_alloc", NULL, OFFSET(disto_alloc), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },
  435. { "fixed_alloc", NULL, OFFSET(fixed_alloc), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
  436. { "fixed_quality", NULL, OFFSET(fixed_quality), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
  437. { NULL },
  438. };
  439. static const AVClass class = {
  440. .class_name = "libopenjpeg",
  441. .item_name = av_default_item_name,
  442. .option = options,
  443. .version = LIBAVUTIL_VERSION_INT,
  444. };
  445. AVCodec ff_libopenjpeg_encoder = {
  446. .name = "libopenjpeg",
  447. .type = AVMEDIA_TYPE_VIDEO,
  448. .id = AV_CODEC_ID_JPEG2000,
  449. .priv_data_size = sizeof(LibOpenJPEGContext),
  450. .init = libopenjpeg_encode_init,
  451. .encode2 = libopenjpeg_encode_frame,
  452. .close = libopenjpeg_encode_close,
  453. .capabilities = 0,
  454. .pix_fmts = (const enum AVPixelFormat[]) {
  455. AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64,
  456. AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY8A, AV_PIX_FMT_GRAY16,
  457. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA420P,
  458. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA422P,
  459. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUVA444P,
  460. AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
  461. AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9,
  462. AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
  463. AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10,
  464. AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12,
  465. AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14,
  466. AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
  467. AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16,
  468. AV_PIX_FMT_NONE
  469. },
  470. .long_name = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
  471. .priv_class = &class,
  472. };