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.

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