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.9KB

  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. static av_cold int decode_init(AVCodecContext *avctx)
  25. {
  26. if (avctx->width & 1) {
  27. av_log(avctx, AV_LOG_ERROR, "frwu needs even width\n");
  28. return AVERROR(EINVAL);
  29. }
  30. avctx->pix_fmt = PIX_FMT_UYVY422;
  31. avctx->coded_frame = avcodec_alloc_frame();
  32. if (!avctx->coded_frame)
  33. return AVERROR(ENOMEM);
  34. return 0;
  35. }
  36. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  37. AVPacket *avpkt)
  38. {
  39. int field, ret;
  40. AVFrame *pic = avctx->coded_frame;
  41. const uint8_t *buf = avpkt->data;
  42. const uint8_t *buf_end = buf + avpkt->size;
  43. if (pic->data[0])
  44. avctx->release_buffer(avctx, pic);
  45. if (avpkt->size < avctx->width * 2 * avctx->height + 4 + 2*8) {
  46. av_log(avctx, AV_LOG_ERROR, "Packet is too small.\n");
  47. return AVERROR_INVALIDDATA;
  48. }
  49. if (bytestream_get_le32(&buf) != MKTAG('F', 'R', 'W', '1')) {
  50. av_log(avctx, AV_LOG_ERROR, "incorrect marker\n");
  51. return AVERROR_INVALIDDATA;
  52. }
  53. pic->reference = 0;
  54. if ((ret = avctx->get_buffer(avctx, pic)) < 0) {
  55. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  56. return ret;
  57. }
  58. pic->pict_type = AV_PICTURE_TYPE_I;
  59. pic->key_frame = 1;
  60. pic->interlaced_frame = 1;
  61. pic->top_field_first = 1;
  62. for (field = 0; field < 2; field++) {
  63. int i;
  64. int field_h = (avctx->height + !field) >> 1;
  65. int field_size, min_field_size = avctx->width * 2 * field_h;
  66. uint8_t *dst = pic->data[0];
  67. if (buf_end - buf < 8)
  68. return AVERROR_INVALIDDATA;
  69. buf += 4; // flags? 0x80 == bottom field maybe?
  70. field_size = bytestream_get_le32(&buf);
  71. if (field_size < min_field_size) {
  72. av_log(avctx, AV_LOG_ERROR, "Field size %i is too small (required %i)\n", field_size, min_field_size);
  73. return AVERROR_INVALIDDATA;
  74. }
  75. if (buf_end - buf < field_size) {
  76. av_log(avctx, AV_LOG_ERROR, "Packet is too small, need %i, have %i\n", field_size, (int)(buf_end - buf));
  77. return AVERROR_INVALIDDATA;
  78. }
  79. if (field)
  80. dst += pic->linesize[0];
  81. for (i = 0; i < field_h; i++) {
  82. memcpy(dst, buf, avctx->width * 2);
  83. buf += avctx->width * 2;
  84. dst += pic->linesize[0] << 1;
  85. }
  86. buf += field_size - min_field_size;
  87. }
  88. *data_size = sizeof(AVFrame);
  89. *(AVFrame*)data = *pic;
  90. return avpkt->size;
  91. }
  92. static av_cold int decode_close(AVCodecContext *avctx)
  93. {
  94. AVFrame *pic = avctx->coded_frame;
  95. if (pic->data[0])
  96. avctx->release_buffer(avctx, pic);
  97. av_freep(&avctx->coded_frame);
  98. return 0;
  99. }
  100. AVCodec ff_frwu_decoder = {
  101. .name = "frwu",
  102. .type = AVMEDIA_TYPE_VIDEO,
  103. .id = CODEC_ID_FRWU,
  104. .init = decode_init,
  105. .close = decode_close,
  106. .decode = decode_frame,
  107. .capabilities = CODEC_CAP_DR1,
  108. .long_name = NULL_IF_CONFIG_SMALL("Forward Uncompressed"),
  109. };