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.

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