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.

85 lines
2.6KB

  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 int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  30. const AVFrame *p, int *got_packet)
  31. {
  32. PutBitContext pb;
  33. int x, y, ret;
  34. if ((ret = ff_alloc_packet(pkt, 32*avctx->height*avctx->width/4)) < 0) {
  35. av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
  36. return ret;
  37. }
  38. #if FF_API_CODED_FRAME
  39. FF_DISABLE_DEPRECATION_WARNINGS
  40. avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
  41. avctx->coded_frame->key_frame = 1;
  42. FF_ENABLE_DEPRECATION_WARNINGS
  43. #endif
  44. init_put_bits(&pb, pkt->data, pkt->size);
  45. for (y = 0; y < avctx->height; y++) {
  46. uint8_t *luma = &p->data[0][y * p->linesize[0]];
  47. uint8_t *cb = &p->data[1][y * p->linesize[1]];
  48. uint8_t *cr = &p->data[2][y * p->linesize[2]];
  49. for (x = 0; x < avctx->width; x += 4) {
  50. put_bits(&pb, 5, luma[3] >> 3);
  51. put_bits(&pb, 5, luma[2] >> 3);
  52. put_bits(&pb, 5, luma[1] >> 3);
  53. put_bits(&pb, 5, luma[0] >> 3);
  54. luma += 4;
  55. put_bits(&pb, 6, *(cb++) >> 2);
  56. put_bits(&pb, 6, *(cr++) >> 2);
  57. }
  58. }
  59. flush_put_bits(&pb);
  60. pkt->size = put_bits_count(&pb) / 8;
  61. pkt->flags |= AV_PKT_FLAG_KEY;
  62. *got_packet = 1;
  63. return 0;
  64. }
  65. AVCodec ff_cljr_encoder = {
  66. .name = "cljr",
  67. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  68. .type = AVMEDIA_TYPE_VIDEO,
  69. .id = AV_CODEC_ID_CLJR,
  70. .encode2 = encode_frame,
  71. .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV411P,
  72. AV_PIX_FMT_NONE },
  73. };