]> git.sesse.net Git - ffmpeg/blob - libavcodec/cljrenc.c
e2db7a6129d2a11ef1c2f11f2facb4840d914914
[ffmpeg] / libavcodec / cljrenc.c
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 /**
23  * @file
24  * Cirrus Logic AccuPak encoder.
25  */
26
27 #include "libavutil/common.h"
28
29 #include "avcodec.h"
30 #include "internal.h"
31 #include "put_bits.h"
32
33 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
34                         const AVFrame *p, int *got_packet)
35 {
36     PutBitContext pb;
37     int x, y, ret;
38
39     if ((ret = ff_alloc_packet(pkt, 32*avctx->height*avctx->width/4)) < 0) {
40         av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
41         return ret;
42     }
43
44     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
45     avctx->coded_frame->key_frame = 1;
46
47     init_put_bits(&pb, pkt->data, pkt->size);
48
49     for (y = 0; y < avctx->height; y++) {
50         uint8_t *luma = &p->data[0][y * p->linesize[0]];
51         uint8_t *cb   = &p->data[1][y * p->linesize[1]];
52         uint8_t *cr   = &p->data[2][y * p->linesize[2]];
53         for (x = 0; x < avctx->width; x += 4) {
54             put_bits(&pb, 5, luma[3] >> 3);
55             put_bits(&pb, 5, luma[2] >> 3);
56             put_bits(&pb, 5, luma[1] >> 3);
57             put_bits(&pb, 5, luma[0] >> 3);
58             luma += 4;
59             put_bits(&pb, 6, *(cb++) >> 2);
60             put_bits(&pb, 6, *(cr++) >> 2);
61         }
62     }
63
64     flush_put_bits(&pb);
65
66     pkt->size   = put_bits_count(&pb) / 8;
67     pkt->flags |= AV_PKT_FLAG_KEY;
68     *got_packet = 1;
69     return 0;
70 }
71
72 AVCodec ff_cljr_encoder = {
73     .name           = "cljr",
74     .long_name      = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
75     .type           = AVMEDIA_TYPE_VIDEO,
76     .id             = AV_CODEC_ID_CLJR,
77     .encode2        = encode_frame,
78     .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV411P,
79                                                    AV_PIX_FMT_NONE },
80 };