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.

104 lines
3.4KB

  1. /*
  2. * AVID Meridien encoder
  3. *
  4. * Copyright (c) 2012 Carl Eugen Hoyos
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 "internal.h"
  24. #include "libavutil/intreadwrite.h"
  25. static av_cold int avui_encode_init(AVCodecContext *avctx)
  26. {
  27. if (avctx->width != 720 || avctx->height != 486 && avctx->height != 576) {
  28. av_log(avctx, AV_LOG_ERROR, "Only 720x486 and 720x576 are supported.\n");
  29. return AVERROR(EINVAL);
  30. }
  31. if (!(avctx->extradata = av_mallocz(144 + AV_INPUT_BUFFER_PADDING_SIZE)))
  32. return AVERROR(ENOMEM);
  33. avctx->extradata_size = 144;
  34. memcpy(avctx->extradata, "\0\0\0\x18""APRGAPRG0001", 16);
  35. if (avctx->field_order > AV_FIELD_PROGRESSIVE) {
  36. avctx->extradata[19] = 2;
  37. } else {
  38. avctx->extradata[19] = 1;
  39. }
  40. memcpy(avctx->extradata + 24, "\0\0\0\x78""ARESARES0001""\0\0\0\x98", 20);
  41. AV_WB32(avctx->extradata + 44, avctx->width);
  42. AV_WB32(avctx->extradata + 48, avctx->height);
  43. memcpy(avctx->extradata + 52, "\0\0\0\x1\0\0\0\x20\0\0\0\x2", 12);
  44. return 0;
  45. }
  46. static int avui_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  47. const AVFrame *pic, int *got_packet)
  48. {
  49. uint8_t *dst;
  50. int i, j, skip, ret, size, interlaced;
  51. interlaced = avctx->field_order > AV_FIELD_PROGRESSIVE;
  52. if (avctx->height == 486) {
  53. skip = 10;
  54. } else {
  55. skip = 16;
  56. }
  57. size = 2 * avctx->width * (avctx->height + skip) + 8 * interlaced;
  58. if ((ret = ff_alloc_packet2(avctx, pkt, size, size)) < 0)
  59. return ret;
  60. dst = pkt->data;
  61. if (!interlaced) {
  62. memset(dst, 0, avctx->width * skip);
  63. dst += avctx->width * skip;
  64. }
  65. for (i = 0; i <= interlaced; i++) {
  66. uint8_t *src;
  67. if (interlaced && avctx->height == 486) {
  68. src = pic->data[0] + (1 - i) * pic->linesize[0];
  69. } else {
  70. src = pic->data[0] + i * pic->linesize[0];
  71. }
  72. memset(dst, 0, avctx->width * skip + 4 * i);
  73. dst += avctx->width * skip + 4 * i;
  74. for (j = 0; j < avctx->height; j += interlaced + 1) {
  75. memcpy(dst, src, avctx->width * 2);
  76. src += (interlaced + 1) * pic->linesize[0];
  77. dst += avctx->width * 2;
  78. }
  79. }
  80. pkt->flags |= AV_PKT_FLAG_KEY;
  81. *got_packet = 1;
  82. return 0;
  83. }
  84. AVCodec ff_avui_encoder = {
  85. .name = "avui",
  86. .long_name = NULL_IF_CONFIG_SMALL("Avid Meridien Uncompressed"),
  87. .type = AVMEDIA_TYPE_VIDEO,
  88. .id = AV_CODEC_ID_AVUI,
  89. .init = avui_encode_init,
  90. .encode2 = avui_encode_frame,
  91. .capabilities = AV_CODEC_CAP_EXPERIMENTAL | AV_CODEC_CAP_INTRA_ONLY,
  92. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_UYVY422, AV_PIX_FMT_NONE },
  93. };