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.

125 lines
3.5KB

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