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.

106 lines
3.4KB

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