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.

130 lines
3.6KB

  1. /*
  2. * V.Flash PTX (.ptx) image decoder
  3. * Copyright (c) 2007 Ivo van Poorten
  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. #include "libavutil/intreadwrite.h"
  22. #include "libavutil/imgutils.h"
  23. #include "avcodec.h"
  24. typedef struct PTXContext {
  25. AVFrame picture;
  26. } PTXContext;
  27. static av_cold int ptx_init(AVCodecContext *avctx) {
  28. PTXContext *s = avctx->priv_data;
  29. avcodec_get_frame_defaults(&s->picture);
  30. avctx->coded_frame= &s->picture;
  31. return 0;
  32. }
  33. static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  34. AVPacket *avpkt) {
  35. const uint8_t *buf = avpkt->data;
  36. const uint8_t *buf_end = avpkt->data + avpkt->size;
  37. PTXContext * const s = avctx->priv_data;
  38. AVFrame *picture = data;
  39. AVFrame * const p = &s->picture;
  40. unsigned int offset, w, h, y, stride, bytes_per_pixel;
  41. uint8_t *ptr;
  42. if (buf_end - buf < 14)
  43. return AVERROR_INVALIDDATA;
  44. offset = AV_RL16(buf);
  45. w = AV_RL16(buf+8);
  46. h = AV_RL16(buf+10);
  47. bytes_per_pixel = AV_RL16(buf+12) >> 3;
  48. if (bytes_per_pixel != 2) {
  49. av_log_ask_for_sample(avctx, "Image format is not RGB15.\n");
  50. return -1;
  51. }
  52. avctx->pix_fmt = PIX_FMT_RGB555;
  53. if (buf_end - buf < offset)
  54. return AVERROR_INVALIDDATA;
  55. if (offset != 0x2c)
  56. av_log_ask_for_sample(avctx, "offset != 0x2c\n");
  57. buf += offset;
  58. if (p->data[0])
  59. avctx->release_buffer(avctx, p);
  60. if (av_image_check_size(w, h, 0, avctx))
  61. return -1;
  62. if (w != avctx->width || h != avctx->height)
  63. avcodec_set_dimensions(avctx, w, h);
  64. if (avctx->get_buffer(avctx, p) < 0) {
  65. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  66. return -1;
  67. }
  68. p->pict_type = AV_PICTURE_TYPE_I;
  69. ptr = p->data[0];
  70. stride = p->linesize[0];
  71. for (y = 0; y < h && buf_end - buf >= w * bytes_per_pixel; y++) {
  72. #if HAVE_BIGENDIAN
  73. unsigned int x;
  74. for (x=0; x<w*bytes_per_pixel; x+=bytes_per_pixel)
  75. AV_WN16(ptr+x, AV_RL16(buf+x));
  76. #else
  77. memcpy(ptr, buf, w*bytes_per_pixel);
  78. #endif
  79. ptr += stride;
  80. buf += w*bytes_per_pixel;
  81. }
  82. *picture = s->picture;
  83. *data_size = sizeof(AVPicture);
  84. if (y < h) {
  85. av_log(avctx, AV_LOG_WARNING, "incomplete packet\n");
  86. return avpkt->size;
  87. }
  88. return offset + w*h*bytes_per_pixel;
  89. }
  90. static av_cold int ptx_end(AVCodecContext *avctx) {
  91. PTXContext *s = avctx->priv_data;
  92. if(s->picture.data[0])
  93. avctx->release_buffer(avctx, &s->picture);
  94. return 0;
  95. }
  96. AVCodec ff_ptx_decoder = {
  97. .name = "ptx",
  98. .type = AVMEDIA_TYPE_VIDEO,
  99. .id = CODEC_ID_PTX,
  100. .priv_data_size = sizeof(PTXContext),
  101. .init = ptx_init,
  102. .close = ptx_end,
  103. .decode = ptx_decode_frame,
  104. .capabilities = CODEC_CAP_DR1,
  105. .long_name = NULL_IF_CONFIG_SMALL("V.Flash PTX image"),
  106. };