FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cljr.c
Go to the documentation of this file.
1 /*
2  * Cirrus Logic AccuPak (CLJR) codec
3  * Copyright (c) 2003 Alex Beregszaszi
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg 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  * FFmpeg 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 FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * Cirrus Logic AccuPak codec.
25  */
26 
27 #include "avcodec.h"
28 #include "libavutil/opt.h"
29 #include "get_bits.h"
30 #include "internal.h"
31 #include "put_bits.h"
32 
33 #if CONFIG_CLJR_DECODER
34 static int decode_frame(AVCodecContext *avctx,
35  void *data, int *got_frame,
36  AVPacket *avpkt)
37 {
38  const uint8_t *buf = avpkt->data;
39  int buf_size = avpkt->size;
40  GetBitContext gb;
41  AVFrame * const p = data;
42  int x, y, ret;
43 
44  if (avctx->height <= 0 || avctx->width <= 0) {
45  av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n");
46  return AVERROR_INVALIDDATA;
47  }
48 
49  if (buf_size / avctx->height < avctx->width) {
50  av_log(avctx, AV_LOG_ERROR,
51  "Resolution larger than buffer size. Invalid header?\n");
52  return AVERROR_INVALIDDATA;
53  }
54 
55  if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
56  return ret;
58  p->key_frame = 1;
59 
60  init_get_bits(&gb, buf, buf_size * 8);
61 
62  for (y = 0; y < avctx->height; y++) {
63  uint8_t *luma = &p->data[0][y * p->linesize[0]];
64  uint8_t *cb = &p->data[1][y * p->linesize[1]];
65  uint8_t *cr = &p->data[2][y * p->linesize[2]];
66  for (x = 0; x < avctx->width; x += 4) {
67  luma[3] = (get_bits(&gb, 5)*33) >> 2;
68  luma[2] = (get_bits(&gb, 5)*33) >> 2;
69  luma[1] = (get_bits(&gb, 5)*33) >> 2;
70  luma[0] = (get_bits(&gb, 5)*33) >> 2;
71  luma += 4;
72  *(cb++) = get_bits(&gb, 6) << 2;
73  *(cr++) = get_bits(&gb, 6) << 2;
74  }
75  }
76 
77  *got_frame = 1;
78 
79  return buf_size;
80 }
81 
82 static av_cold int decode_init(AVCodecContext *avctx)
83 {
84  avctx->pix_fmt = AV_PIX_FMT_YUV411P;
85  return 0;
86 }
87 
88 AVCodec ff_cljr_decoder = {
89  .name = "cljr",
90  .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
91  .type = AVMEDIA_TYPE_VIDEO,
92  .id = AV_CODEC_ID_CLJR,
93  .init = decode_init,
94  .decode = decode_frame,
95  .capabilities = CODEC_CAP_DR1,
96 };
97 #endif
98 
99 #if CONFIG_CLJR_ENCODER
100 typedef struct CLJRContext {
101  AVClass *avclass;
102  int dither_type;
103 } CLJRContext;
104 
105 static av_cold int encode_init(AVCodecContext *avctx)
106 {
107  avctx->coded_frame = av_frame_alloc();
108  if (!avctx->coded_frame)
109  return AVERROR(ENOMEM);
110 
111  return 0;
112 }
113 
114 static av_cold int encode_close(AVCodecContext *avctx)
115 {
116  av_frame_free(&avctx->coded_frame);
117  return 0;
118 }
119 
120 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
121  const AVFrame *p, int *got_packet)
122 {
123  CLJRContext *a = avctx->priv_data;
124  PutBitContext pb;
125  int x, y, ret;
126  uint32_t dither= avctx->frame_number;
127  static const uint32_t ordered_dither[2][2] =
128  {
129  { 0x10400000, 0x104F0000 },
130  { 0xCB2A0000, 0xCB250000 },
131  };
132 
133  if ((ret = ff_alloc_packet2(avctx, pkt, 32*avctx->height*avctx->width/4)) < 0)
134  return ret;
135 
137  avctx->coded_frame->key_frame = 1;
138 
139  init_put_bits(&pb, pkt->data, pkt->size);
140 
141  for (y = 0; y < avctx->height; y++) {
142  uint8_t *luma = &p->data[0][y * p->linesize[0]];
143  uint8_t *cb = &p->data[1][y * p->linesize[1]];
144  uint8_t *cr = &p->data[2][y * p->linesize[2]];
145  for (x = 0; x < avctx->width; x += 4) {
146  switch (a->dither_type) {
147  case 0: dither = 0x492A0000; break;
148  case 1: dither = dither * 1664525 + 1013904223; break;
149  case 2: dither = ordered_dither[ y&1 ][ (x>>2)&1 ];break;
150  }
151  put_bits(&pb, 5, (249*(luma[3] + (dither>>29) )) >> 11);
152  put_bits(&pb, 5, (249*(luma[2] + ((dither>>26)&7))) >> 11);
153  put_bits(&pb, 5, (249*(luma[1] + ((dither>>23)&7))) >> 11);
154  put_bits(&pb, 5, (249*(luma[0] + ((dither>>20)&7))) >> 11);
155  luma += 4;
156  put_bits(&pb, 6, (253*(*(cb++) + ((dither>>18)&3))) >> 10);
157  put_bits(&pb, 6, (253*(*(cr++) + ((dither>>16)&3))) >> 10);
158  }
159  }
160 
161  flush_put_bits(&pb);
162 
163  pkt->size = put_bits_count(&pb) / 8;
164  pkt->flags |= AV_PKT_FLAG_KEY;
165  *got_packet = 1;
166  return 0;
167 }
168 
169 #define OFFSET(x) offsetof(CLJRContext, x)
170 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
171 static const AVOption options[] = {
172  { "dither_type", "Dither type", OFFSET(dither_type), AV_OPT_TYPE_INT, { .i64=1 }, 0, 2, VE},
173  { NULL },
174 };
175 
176 static const AVClass cljr_class = {
177  .class_name = "cljr encoder",
178  .item_name = av_default_item_name,
179  .option = options,
180  .version = LIBAVUTIL_VERSION_INT,
181 };
182 
183 AVCodec ff_cljr_encoder = {
184  .name = "cljr",
185  .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
186  .type = AVMEDIA_TYPE_VIDEO,
187  .id = AV_CODEC_ID_CLJR,
188  .priv_data_size = sizeof(CLJRContext),
189  .init = encode_init,
190  .encode2 = encode_frame,
191  .close = encode_close,
192  .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV411P,
193  AV_PIX_FMT_NONE },
194  .priv_class = &cljr_class,
195 };
196 #endif