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.

605 lines
19KB

  1. /*
  2. * JPEG 2000 decoding support via OpenJPEG
  3. * Copyright (c) 2009 Jaikrishnan Menon <realityman@gmx.net>
  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 decoder using libopenjpeg
  24. */
  25. #include "libavutil/common.h"
  26. #include "libavutil/imgutils.h"
  27. #include "libavutil/intreadwrite.h"
  28. #include "libavutil/opt.h"
  29. #include "libavutil/pixfmt.h"
  30. #include "avcodec.h"
  31. #include "internal.h"
  32. #include "thread.h"
  33. #if HAVE_OPENJPEG_2_2_OPENJPEG_H
  34. # include <openjpeg-2.2/openjpeg.h>
  35. #elif HAVE_OPENJPEG_2_1_OPENJPEG_H
  36. # include <openjpeg-2.1/openjpeg.h>
  37. #elif HAVE_OPENJPEG_2_0_OPENJPEG_H
  38. # include <openjpeg-2.0/openjpeg.h>
  39. #elif HAVE_OPENJPEG_1_5_OPENJPEG_H
  40. # include <openjpeg-1.5/openjpeg.h>
  41. #else
  42. # include <openjpeg.h>
  43. #endif
  44. #if HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H || HAVE_OPENJPEG_2_0_OPENJPEG_H
  45. # define OPENJPEG_MAJOR_VERSION 2
  46. # define OPJ(x) OPJ_##x
  47. #else
  48. # define OPENJPEG_MAJOR_VERSION 1
  49. # define OPJ(x) x
  50. #endif
  51. #define JP2_SIG_TYPE 0x6A502020
  52. #define JP2_SIG_VALUE 0x0D0A870A
  53. // pix_fmts with lower bpp have to be listed before
  54. // similar pix_fmts with higher bpp.
  55. #define RGB_PIXEL_FORMATS AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, \
  56. AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64
  57. #define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8, \
  58. AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA16
  59. #define YUV_PIXEL_FORMATS AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUVA420P, \
  60. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA422P, \
  61. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA444P, \
  62. AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9, \
  63. AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9, \
  64. AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, \
  65. AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10, \
  66. AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12, \
  67. AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14, \
  68. AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, \
  69. AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16
  70. #define XYZ_PIXEL_FORMATS AV_PIX_FMT_XYZ12
  71. static const enum AVPixelFormat libopenjpeg_rgb_pix_fmts[] = {
  72. RGB_PIXEL_FORMATS
  73. };
  74. static const enum AVPixelFormat libopenjpeg_gray_pix_fmts[] = {
  75. GRAY_PIXEL_FORMATS
  76. };
  77. static const enum AVPixelFormat libopenjpeg_yuv_pix_fmts[] = {
  78. YUV_PIXEL_FORMATS
  79. };
  80. static const enum AVPixelFormat libopenjpeg_all_pix_fmts[] = {
  81. RGB_PIXEL_FORMATS, GRAY_PIXEL_FORMATS, YUV_PIXEL_FORMATS, XYZ_PIXEL_FORMATS
  82. };
  83. typedef struct LibOpenJPEGContext {
  84. AVClass *class;
  85. opj_dparameters_t dec_params;
  86. #if OPENJPEG_MAJOR_VERSION == 1
  87. opj_event_mgr_t event_mgr;
  88. #endif // OPENJPEG_MAJOR_VERSION == 1
  89. int lowqual;
  90. } LibOpenJPEGContext;
  91. static void error_callback(const char *msg, void *data)
  92. {
  93. av_log(data, AV_LOG_ERROR, "%s", msg);
  94. }
  95. static void warning_callback(const char *msg, void *data)
  96. {
  97. av_log(data, AV_LOG_WARNING, "%s", msg);
  98. }
  99. static void info_callback(const char *msg, void *data)
  100. {
  101. av_log(data, AV_LOG_DEBUG, "%s", msg);
  102. }
  103. #if OPENJPEG_MAJOR_VERSION == 2
  104. typedef struct BufferReader {
  105. int pos;
  106. int size;
  107. const uint8_t *buffer;
  108. } BufferReader;
  109. static OPJ_SIZE_T stream_read(void *out_buffer, OPJ_SIZE_T nb_bytes, void *user_data)
  110. {
  111. BufferReader *reader = user_data;
  112. int remaining;
  113. if (reader->pos == reader->size) {
  114. return (OPJ_SIZE_T)-1;
  115. }
  116. remaining = reader->size - reader->pos;
  117. if (nb_bytes > remaining) {
  118. nb_bytes = remaining;
  119. }
  120. memcpy(out_buffer, reader->buffer + reader->pos, nb_bytes);
  121. reader->pos += (int)nb_bytes;
  122. return nb_bytes;
  123. }
  124. static OPJ_OFF_T stream_skip(OPJ_OFF_T nb_bytes, void *user_data)
  125. {
  126. BufferReader *reader = user_data;
  127. if (nb_bytes < 0) {
  128. if (reader->pos == 0) {
  129. return (OPJ_SIZE_T)-1;
  130. }
  131. if (nb_bytes + reader->pos < 0) {
  132. nb_bytes = -reader->pos;
  133. }
  134. } else {
  135. int remaining;
  136. if (reader->pos == reader->size) {
  137. return (OPJ_SIZE_T)-1;
  138. }
  139. remaining = reader->size - reader->pos;
  140. if (nb_bytes > remaining) {
  141. nb_bytes = remaining;
  142. }
  143. }
  144. reader->pos += (int)nb_bytes;
  145. return nb_bytes;
  146. }
  147. static OPJ_BOOL stream_seek(OPJ_OFF_T nb_bytes, void *user_data)
  148. {
  149. BufferReader *reader = user_data;
  150. if (nb_bytes < 0 || nb_bytes > reader->size) {
  151. return OPJ_FALSE;
  152. }
  153. reader->pos = (int)nb_bytes;
  154. return OPJ_TRUE;
  155. }
  156. #endif // OPENJPEG_MAJOR_VERSION == 2
  157. static inline int libopenjpeg_matches_pix_fmt(const opj_image_t *image, enum AVPixelFormat pix_fmt)
  158. {
  159. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
  160. int match = 1;
  161. if (desc->nb_components != image->numcomps) {
  162. return 0;
  163. }
  164. switch (desc->nb_components) {
  165. case 4:
  166. match = match &&
  167. desc->comp[3].depth >= image->comps[3].prec &&
  168. 1 == image->comps[3].dx &&
  169. 1 == image->comps[3].dy;
  170. case 3:
  171. match = match &&
  172. desc->comp[2].depth >= image->comps[2].prec &&
  173. 1 << desc->log2_chroma_w == image->comps[2].dx &&
  174. 1 << desc->log2_chroma_h == image->comps[2].dy;
  175. case 2:
  176. match = match &&
  177. desc->comp[1].depth >= image->comps[1].prec &&
  178. 1 << desc->log2_chroma_w == image->comps[1].dx &&
  179. 1 << desc->log2_chroma_h == image->comps[1].dy;
  180. case 1:
  181. match = match &&
  182. desc->comp[0].depth >= image->comps[0].prec &&
  183. 1 == image->comps[0].dx &&
  184. 1 == image->comps[0].dy;
  185. default:
  186. break;
  187. }
  188. return match;
  189. }
  190. static inline enum AVPixelFormat libopenjpeg_guess_pix_fmt(const opj_image_t *image) {
  191. int index;
  192. const enum AVPixelFormat *possible_fmts = NULL;
  193. int possible_fmts_nb = 0;
  194. switch (image->color_space) {
  195. case OPJ(CLRSPC_SRGB):
  196. possible_fmts = libopenjpeg_rgb_pix_fmts;
  197. possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_rgb_pix_fmts);
  198. break;
  199. case OPJ(CLRSPC_GRAY):
  200. possible_fmts = libopenjpeg_gray_pix_fmts;
  201. possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_gray_pix_fmts);
  202. break;
  203. case OPJ(CLRSPC_SYCC):
  204. possible_fmts = libopenjpeg_yuv_pix_fmts;
  205. possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_yuv_pix_fmts);
  206. break;
  207. default:
  208. possible_fmts = libopenjpeg_all_pix_fmts;
  209. possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_all_pix_fmts);
  210. break;
  211. }
  212. for (index = 0; index < possible_fmts_nb; ++index)
  213. if (libopenjpeg_matches_pix_fmt(image, possible_fmts[index])) {
  214. return possible_fmts[index];
  215. }
  216. return AV_PIX_FMT_NONE;
  217. }
  218. static inline int libopenjpeg_ispacked(enum AVPixelFormat pix_fmt)
  219. {
  220. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
  221. int i, component_plane;
  222. if (pix_fmt == AV_PIX_FMT_GRAY16)
  223. return 0;
  224. component_plane = desc->comp[0].plane;
  225. for (i = 1; i < desc->nb_components; i++)
  226. if (component_plane != desc->comp[i].plane)
  227. return 0;
  228. return 1;
  229. }
  230. static inline void libopenjpeg_copy_to_packed8(AVFrame *picture, opj_image_t *image) {
  231. uint8_t *img_ptr;
  232. int index, x, y, c;
  233. for (y = 0; y < picture->height; y++) {
  234. index = y * picture->width;
  235. img_ptr = picture->data[0] + y * picture->linesize[0];
  236. for (x = 0; x < picture->width; x++, index++)
  237. for (c = 0; c < image->numcomps; c++)
  238. *img_ptr++ = 0x80 * image->comps[c].sgnd + image->comps[c].data[index];
  239. }
  240. }
  241. static inline void libopenjpeg_copy_to_packed16(AVFrame *picture, opj_image_t *image) {
  242. uint16_t *img_ptr;
  243. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(picture->format);
  244. int index, x, y, c;
  245. int adjust[4];
  246. for (x = 0; x < image->numcomps; x++)
  247. adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift;
  248. for (y = 0; y < picture->height; y++) {
  249. index = y * picture->width;
  250. img_ptr = (uint16_t *) (picture->data[0] + y * picture->linesize[0]);
  251. for (x = 0; x < picture->width; x++, index++)
  252. for (c = 0; c < image->numcomps; c++)
  253. *img_ptr++ = (1 << image->comps[c].prec - 1) * image->comps[c].sgnd +
  254. (unsigned)image->comps[c].data[index] << adjust[c];
  255. }
  256. }
  257. static inline void libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image) {
  258. int *comp_data;
  259. uint8_t *img_ptr;
  260. int index, x, y;
  261. for (index = 0; index < image->numcomps; index++) {
  262. comp_data = image->comps[index].data;
  263. for (y = 0; y < image->comps[index].h; y++) {
  264. img_ptr = picture->data[index] + y * picture->linesize[index];
  265. for (x = 0; x < image->comps[index].w; x++) {
  266. *img_ptr = 0x80 * image->comps[index].sgnd + *comp_data;
  267. img_ptr++;
  268. comp_data++;
  269. }
  270. }
  271. }
  272. }
  273. static inline void libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image) {
  274. int *comp_data;
  275. uint16_t *img_ptr;
  276. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(picture->format);
  277. int index, x, y;
  278. int adjust[4];
  279. for (x = 0; x < image->numcomps; x++)
  280. adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift;
  281. for (index = 0; index < image->numcomps; index++) {
  282. comp_data = image->comps[index].data;
  283. for (y = 0; y < image->comps[index].h; y++) {
  284. img_ptr = (uint16_t *)(picture->data[index] + y * picture->linesize[index]);
  285. for (x = 0; x < image->comps[index].w; x++) {
  286. *img_ptr = (1 << image->comps[index].prec - 1) * image->comps[index].sgnd +
  287. (unsigned)*comp_data << adjust[index];
  288. img_ptr++;
  289. comp_data++;
  290. }
  291. }
  292. }
  293. }
  294. static av_cold int libopenjpeg_decode_init(AVCodecContext *avctx)
  295. {
  296. LibOpenJPEGContext *ctx = avctx->priv_data;
  297. opj_set_default_decoder_parameters(&ctx->dec_params);
  298. return 0;
  299. }
  300. static int libopenjpeg_decode_frame(AVCodecContext *avctx,
  301. void *data, int *got_frame,
  302. AVPacket *avpkt)
  303. {
  304. uint8_t *buf = avpkt->data;
  305. int buf_size = avpkt->size;
  306. LibOpenJPEGContext *ctx = avctx->priv_data;
  307. ThreadFrame frame = { .f = data };
  308. AVFrame *picture = data;
  309. const AVPixFmtDescriptor *desc;
  310. int width, height, ret;
  311. int pixel_size = 0;
  312. int ispacked = 0;
  313. int i;
  314. opj_image_t *image = NULL;
  315. #if OPENJPEG_MAJOR_VERSION == 1
  316. opj_dinfo_t *dec = NULL;
  317. opj_cio_t *stream = NULL;
  318. #else // OPENJPEG_MAJOR_VERSION == 2
  319. BufferReader reader = {0, avpkt->size, avpkt->data};
  320. opj_codec_t *dec = NULL;
  321. opj_stream_t *stream = NULL;
  322. #endif // OPENJPEG_MAJOR_VERSION == 1
  323. *got_frame = 0;
  324. // Check if input is a raw jpeg2k codestream or in jp2 wrapping
  325. if ((AV_RB32(buf) == 12) &&
  326. (AV_RB32(buf + 4) == JP2_SIG_TYPE) &&
  327. (AV_RB32(buf + 8) == JP2_SIG_VALUE)) {
  328. dec = opj_create_decompress(OPJ(CODEC_JP2));
  329. } else {
  330. /* If the AVPacket contains a jp2c box, then skip to
  331. * the starting byte of the codestream. */
  332. if (AV_RB32(buf + 4) == AV_RB32("jp2c"))
  333. buf += 8;
  334. dec = opj_create_decompress(OPJ(CODEC_J2K));
  335. }
  336. if (!dec) {
  337. av_log(avctx, AV_LOG_ERROR, "Error initializing decoder.\n");
  338. ret = AVERROR_EXTERNAL;
  339. goto done;
  340. }
  341. #if OPENJPEG_MAJOR_VERSION == 1
  342. memset(&ctx->event_mgr, 0, sizeof(ctx->event_mgr));
  343. ctx->event_mgr.info_handler = info_callback;
  344. ctx->event_mgr.error_handler = error_callback;
  345. ctx->event_mgr.warning_handler = warning_callback;
  346. opj_set_event_mgr((opj_common_ptr) dec, &ctx->event_mgr, avctx);
  347. ctx->dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER;
  348. ctx->dec_params.cp_layer = ctx->lowqual;
  349. #else // OPENJPEG_MAJOR_VERSION == 2
  350. if (!opj_set_error_handler(dec, error_callback, avctx) ||
  351. !opj_set_warning_handler(dec, warning_callback, avctx) ||
  352. !opj_set_info_handler(dec, info_callback, avctx)) {
  353. av_log(avctx, AV_LOG_ERROR, "Error setting decoder handlers.\n");
  354. ret = AVERROR_EXTERNAL;
  355. goto done;
  356. }
  357. ctx->dec_params.cp_layer = ctx->lowqual;
  358. ctx->dec_params.cp_reduce = avctx->lowres;
  359. #endif // OPENJPEG_MAJOR_VERSION == 1
  360. // Tie decoder with decoding parameters
  361. opj_setup_decoder(dec, &ctx->dec_params);
  362. #if OPENJPEG_MAJOR_VERSION == 1
  363. stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
  364. #else // OPENJPEG_MAJOR_VERSION == 2
  365. stream = opj_stream_default_create(OPJ_STREAM_READ);
  366. #endif // OPENJPEG_MAJOR_VERSION == 1
  367. if (!stream) {
  368. av_log(avctx, AV_LOG_ERROR,
  369. "Codestream could not be opened for reading.\n");
  370. ret = AVERROR_EXTERNAL;
  371. goto done;
  372. }
  373. #if OPENJPEG_MAJOR_VERSION == 1
  374. // Decode the header only.
  375. image = opj_decode_with_info(dec, stream, NULL);
  376. opj_cio_close(stream);
  377. stream = NULL;
  378. ret = !image;
  379. #else // OPENJPEG_MAJOR_VERSION == 2
  380. opj_stream_set_read_function(stream, stream_read);
  381. opj_stream_set_skip_function(stream, stream_skip);
  382. opj_stream_set_seek_function(stream, stream_seek);
  383. #if HAVE_OPENJPEG_2_2_OPENJPEG_H || HAVE_OPENJPEG_2_1_OPENJPEG_H
  384. opj_stream_set_user_data(stream, &reader, NULL);
  385. #elif HAVE_OPENJPEG_2_0_OPENJPEG_H
  386. opj_stream_set_user_data(stream, &reader);
  387. #else
  388. #error Missing call to opj_stream_set_user_data
  389. #endif
  390. opj_stream_set_user_data_length(stream, avpkt->size);
  391. // Decode the header only.
  392. ret = !opj_read_header(stream, dec, &image);
  393. #endif // OPENJPEG_MAJOR_VERSION == 1
  394. if (ret) {
  395. av_log(avctx, AV_LOG_ERROR, "Error decoding codestream header.\n");
  396. ret = AVERROR_EXTERNAL;
  397. goto done;
  398. }
  399. width = image->x1 - image->x0;
  400. height = image->y1 - image->y0;
  401. ret = ff_set_dimensions(avctx, width, height);
  402. if (ret < 0)
  403. goto done;
  404. if (avctx->pix_fmt != AV_PIX_FMT_NONE)
  405. if (!libopenjpeg_matches_pix_fmt(image, avctx->pix_fmt))
  406. avctx->pix_fmt = AV_PIX_FMT_NONE;
  407. if (avctx->pix_fmt == AV_PIX_FMT_NONE)
  408. avctx->pix_fmt = libopenjpeg_guess_pix_fmt(image);
  409. if (avctx->pix_fmt == AV_PIX_FMT_NONE) {
  410. av_log(avctx, AV_LOG_ERROR, "Unable to determine pixel format.\n");
  411. ret = AVERROR_UNKNOWN;
  412. goto done;
  413. }
  414. for (i = 0; i < image->numcomps; i++)
  415. if (image->comps[i].prec > avctx->bits_per_raw_sample)
  416. avctx->bits_per_raw_sample = image->comps[i].prec;
  417. if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
  418. goto done;
  419. #if OPENJPEG_MAJOR_VERSION == 1
  420. ctx->dec_params.cp_limit_decoding = NO_LIMITATION;
  421. ctx->dec_params.cp_reduce = avctx->lowres;
  422. // Tie decoder with decoding parameters.
  423. opj_setup_decoder(dec, &ctx->dec_params);
  424. stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
  425. if (!stream) {
  426. av_log(avctx, AV_LOG_ERROR,
  427. "Codestream could not be opened for reading.\n");
  428. ret = AVERROR_EXTERNAL;
  429. goto done;
  430. }
  431. opj_image_destroy(image);
  432. // Decode the codestream
  433. image = opj_decode_with_info(dec, stream, NULL);
  434. ret = !image;
  435. #else // OPENJPEG_MAJOR_VERSION == 2
  436. ret = !opj_decode(dec, stream, image);
  437. #endif // OPENJPEG_MAJOR_VERSION == 1
  438. if (ret) {
  439. av_log(avctx, AV_LOG_ERROR, "Error decoding codestream.\n");
  440. ret = AVERROR_EXTERNAL;
  441. goto done;
  442. }
  443. for (i = 0; i < image->numcomps; i++) {
  444. if (!image->comps[i].data) {
  445. av_log(avctx, AV_LOG_ERROR,
  446. "Image component %d contains no data.\n", i);
  447. ret = AVERROR_INVALIDDATA;
  448. goto done;
  449. }
  450. }
  451. desc = av_pix_fmt_desc_get(avctx->pix_fmt);
  452. pixel_size = desc->comp[0].step;
  453. ispacked = libopenjpeg_ispacked(avctx->pix_fmt);
  454. switch (pixel_size) {
  455. case 1:
  456. if (ispacked) {
  457. libopenjpeg_copy_to_packed8(picture, image);
  458. } else {
  459. libopenjpeg_copyto8(picture, image);
  460. }
  461. break;
  462. case 2:
  463. if (ispacked) {
  464. libopenjpeg_copy_to_packed8(picture, image);
  465. } else {
  466. libopenjpeg_copyto16(picture, image);
  467. }
  468. break;
  469. case 3:
  470. case 4:
  471. if (ispacked) {
  472. libopenjpeg_copy_to_packed8(picture, image);
  473. }
  474. break;
  475. case 6:
  476. case 8:
  477. if (ispacked) {
  478. libopenjpeg_copy_to_packed16(picture, image);
  479. }
  480. break;
  481. default:
  482. avpriv_report_missing_feature(avctx, "Pixel size %d", pixel_size);
  483. ret = AVERROR_PATCHWELCOME;
  484. goto done;
  485. }
  486. *got_frame = 1;
  487. picture->pict_type = AV_PICTURE_TYPE_I;
  488. picture->key_frame = 1;
  489. ret = buf_size;
  490. done:
  491. opj_image_destroy(image);
  492. #if OPENJPEG_MAJOR_VERSION == 2
  493. opj_stream_destroy(stream);
  494. opj_destroy_codec(dec);
  495. #else
  496. opj_cio_close(stream);
  497. opj_destroy_decompress(dec);
  498. #endif
  499. return ret;
  500. }
  501. static av_cold void libopenjpeg_static_init(AVCodec *codec)
  502. {
  503. const char *version = opj_version();
  504. int major, minor;
  505. if (sscanf(version, "%d.%d", &major, &minor) == 2 && 1000*major + minor <= 1003)
  506. codec->capabilities |= AV_CODEC_CAP_EXPERIMENTAL;
  507. }
  508. #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
  509. #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
  510. static const AVOption options[] = {
  511. { "lowqual", "Limit the number of layers used for decoding",
  512. OFFSET(lowqual), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VD },
  513. { NULL },
  514. };
  515. static const AVClass openjpeg_class = {
  516. .class_name = "libopenjpeg",
  517. .item_name = av_default_item_name,
  518. .option = options,
  519. .version = LIBAVUTIL_VERSION_INT,
  520. };
  521. AVCodec ff_libopenjpeg_decoder = {
  522. .name = "libopenjpeg",
  523. .long_name = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
  524. .type = AVMEDIA_TYPE_VIDEO,
  525. .id = AV_CODEC_ID_JPEG2000,
  526. .priv_data_size = sizeof(LibOpenJPEGContext),
  527. .init = libopenjpeg_decode_init,
  528. .decode = libopenjpeg_decode_frame,
  529. .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
  530. .max_lowres = 31,
  531. .priv_class = &openjpeg_class,
  532. .init_static_data = libopenjpeg_static_init,
  533. };