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.

124 lines
3.7KB

  1. /*
  2. * Forward Uncompressed
  3. *
  4. * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "avcodec.h"
  23. #include "bytestream.h"
  24. #include "libavutil/intreadwrite.h"
  25. static av_cold int decode_init(AVCodecContext *avctx)
  26. {
  27. if (avctx->width & 1) {
  28. av_log(avctx, AV_LOG_ERROR, "FRWU needs even width\n");
  29. return -1;
  30. }
  31. avctx->pix_fmt = PIX_FMT_UYVY422;
  32. avctx->coded_frame = avcodec_alloc_frame();
  33. if (!avctx->coded_frame)
  34. return AVERROR(ENOMEM);
  35. return 0;
  36. }
  37. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  38. AVPacket *avpkt)
  39. {
  40. int field;
  41. AVFrame *pic = avctx->coded_frame;
  42. const uint8_t *buf = avpkt->data;
  43. const uint8_t *buf_end = buf + avpkt->size;
  44. if (pic->data[0])
  45. avctx->release_buffer(avctx, pic);
  46. if (avpkt->size < avctx->width * 2 * avctx->height + 4 + 2*8) {
  47. av_log(avctx, AV_LOG_ERROR, "Packet is too small.\n");
  48. return -1;
  49. }
  50. if (bytestream_get_le32(&buf) != AV_RL32("FRW1")) {
  51. av_log(avctx, AV_LOG_ERROR, "incorrect marker\n");
  52. return -1;
  53. }
  54. pic->reference = 0;
  55. if (avctx->get_buffer(avctx, pic) < 0)
  56. return -1;
  57. pic->pict_type = AV_PICTURE_TYPE_I;
  58. pic->key_frame = 1;
  59. pic->interlaced_frame = 1;
  60. pic->top_field_first = 1;
  61. for (field = 0; field < 2; field++) {
  62. int i;
  63. int field_h = (avctx->height + !field) >> 1;
  64. int field_size, min_field_size = avctx->width * 2 * field_h;
  65. uint8_t *dst = pic->data[0];
  66. if (buf_end - buf < 8)
  67. return -1;
  68. buf += 4; // flags? 0x80 == bottom field maybe?
  69. field_size = bytestream_get_le32(&buf);
  70. if (field_size < min_field_size) {
  71. av_log(avctx, AV_LOG_ERROR, "Field size %i is too small (required %i)\n", field_size, min_field_size);
  72. return -1;
  73. }
  74. if (buf_end - buf < field_size) {
  75. av_log(avctx, AV_LOG_ERROR, "Packet is too small, need %i, have %i\n", field_size, (int)(buf_end - buf));
  76. return -1;
  77. }
  78. if (field)
  79. dst += pic->linesize[0];
  80. for (i = 0; i < field_h; i++) {
  81. memcpy(dst, buf, avctx->width * 2);
  82. buf += avctx->width * 2;
  83. dst += pic->linesize[0] << 1;
  84. }
  85. buf += field_size - min_field_size;
  86. }
  87. *data_size = sizeof(AVFrame);
  88. *(AVFrame*)data = *pic;
  89. return avpkt->size;
  90. }
  91. static av_cold int decode_close(AVCodecContext *avctx)
  92. {
  93. AVFrame *pic = avctx->coded_frame;
  94. if (pic->data[0])
  95. avctx->release_buffer(avctx, pic);
  96. av_freep(&avctx->coded_frame);
  97. return 0;
  98. }
  99. AVCodec ff_frwu_decoder = {
  100. .name = "FRWU",
  101. .type = AVMEDIA_TYPE_VIDEO,
  102. .id = CODEC_ID_FRWU,
  103. .init = decode_init,
  104. .close = decode_close,
  105. .decode = decode_frame,
  106. .capabilities = CODEC_CAP_DR1,
  107. .long_name = NULL_IF_CONFIG_SMALL("Forward Uncompressed"),
  108. };