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.

98 lines
2.9KB

  1. /*
  2. * Cirrus Logic AccuPak (CLJR) encoder
  3. * Copyright (c) 2003 Alex Beregszaszi
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Cirrus Logic AccuPak encoder.
  24. */
  25. #include "libavutil/common.h"
  26. #include "avcodec.h"
  27. #include "internal.h"
  28. #include "put_bits.h"
  29. static av_cold int encode_init(AVCodecContext *avctx)
  30. {
  31. avctx->coded_frame = av_frame_alloc();
  32. if (!avctx->coded_frame)
  33. return AVERROR(ENOMEM);
  34. return 0;
  35. }
  36. static av_cold int encode_close(AVCodecContext *avctx)
  37. {
  38. av_frame_free(&avctx->coded_frame);
  39. return 0;
  40. }
  41. static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  42. const AVFrame *p, int *got_packet)
  43. {
  44. PutBitContext pb;
  45. int x, y, ret;
  46. if ((ret = ff_alloc_packet(pkt, 32*avctx->height*avctx->width/4)) < 0) {
  47. av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
  48. return ret;
  49. }
  50. avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
  51. avctx->coded_frame->key_frame = 1;
  52. init_put_bits(&pb, pkt->data, pkt->size);
  53. for (y = 0; y < avctx->height; y++) {
  54. uint8_t *luma = &p->data[0][y * p->linesize[0]];
  55. uint8_t *cb = &p->data[1][y * p->linesize[1]];
  56. uint8_t *cr = &p->data[2][y * p->linesize[2]];
  57. for (x = 0; x < avctx->width; x += 4) {
  58. put_bits(&pb, 5, luma[3] >> 3);
  59. put_bits(&pb, 5, luma[2] >> 3);
  60. put_bits(&pb, 5, luma[1] >> 3);
  61. put_bits(&pb, 5, luma[0] >> 3);
  62. luma += 4;
  63. put_bits(&pb, 6, *(cb++) >> 2);
  64. put_bits(&pb, 6, *(cr++) >> 2);
  65. }
  66. }
  67. flush_put_bits(&pb);
  68. pkt->size = put_bits_count(&pb) / 8;
  69. pkt->flags |= AV_PKT_FLAG_KEY;
  70. *got_packet = 1;
  71. return 0;
  72. }
  73. AVCodec ff_cljr_encoder = {
  74. .name = "cljr",
  75. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  76. .type = AVMEDIA_TYPE_VIDEO,
  77. .id = AV_CODEC_ID_CLJR,
  78. .init = encode_init,
  79. .encode2 = encode_frame,
  80. .close = encode_close,
  81. .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV411P,
  82. AV_PIX_FMT_NONE },
  83. };