~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/cljr.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 */
26
26
 
27
27
#include "avcodec.h"
28
 
#include "dsputil.h"
29
28
#include "get_bits.h"
30
 
 
31
 
/* Disable the encoder. */
32
 
#undef CONFIG_CLJR_ENCODER
33
 
#define CONFIG_CLJR_ENCODER 0
34
 
 
35
 
typedef struct CLJRContext{
36
 
    AVCodecContext *avctx;
37
 
    AVFrame picture;
38
 
    int delta[16];
39
 
    int offset[4];
40
 
    GetBitContext gb;
 
29
#include "put_bits.h"
 
30
 
 
31
typedef struct CLJRContext {
 
32
    AVFrame         picture;
41
33
} CLJRContext;
42
34
 
 
35
static av_cold int common_init(AVCodecContext *avctx)
 
36
{
 
37
    CLJRContext * const a = avctx->priv_data;
 
38
 
 
39
    avctx->coded_frame = &a->picture;
 
40
 
 
41
    return 0;
 
42
}
 
43
 
 
44
#if CONFIG_CLJR_DECODER
43
45
static int decode_frame(AVCodecContext *avctx,
44
46
                        void *data, int *data_size,
45
47
                        AVPacket *avpkt)
46
48
{
47
49
    const uint8_t *buf = avpkt->data;
48
 
    int buf_size = avpkt->size;
 
50
    int buf_size       = avpkt->size;
49
51
    CLJRContext * const a = avctx->priv_data;
 
52
    GetBitContext gb;
50
53
    AVFrame *picture = data;
51
 
    AVFrame * const p= (AVFrame*)&a->picture;
 
54
    AVFrame * const p = &a->picture;
52
55
    int x, y;
53
56
 
54
 
    if(p->data[0])
 
57
    if (p->data[0])
55
58
        avctx->release_buffer(avctx, p);
56
59
 
57
 
    if(buf_size/avctx->height < avctx->width) {
58
 
        av_log(avctx, AV_LOG_ERROR, "Resolution larger than buffer size. Invalid header?\n");
59
 
        return -1;
60
 
    }
61
 
 
62
 
    p->reference= 0;
63
 
    if(avctx->get_buffer(avctx, p) < 0){
 
60
    if (avctx->height <= 0 || avctx->width <= 0) {
 
61
        av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n");
 
62
        return AVERROR_INVALIDDATA;
 
63
    }
 
64
 
 
65
    if (buf_size < avctx->height * avctx->width) {
 
66
        av_log(avctx, AV_LOG_ERROR,
 
67
               "Resolution larger than buffer size. Invalid header?\n");
 
68
        return AVERROR_INVALIDDATA;
 
69
    }
 
70
 
 
71
    p->reference = 0;
 
72
    if (avctx->get_buffer(avctx, p) < 0) {
64
73
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
65
74
        return -1;
66
75
    }
67
 
    p->pict_type= AV_PICTURE_TYPE_I;
68
 
    p->key_frame= 1;
69
 
 
70
 
    init_get_bits(&a->gb, buf, buf_size);
71
 
 
72
 
    for(y=0; y<avctx->height; y++){
73
 
        uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
74
 
        uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ];
75
 
        uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ];
76
 
        for(x=0; x<avctx->width; x+=4){
77
 
                luma[3] = get_bits(&a->gb, 5) << 3;
78
 
            luma[2] = get_bits(&a->gb, 5) << 3;
79
 
            luma[1] = get_bits(&a->gb, 5) << 3;
80
 
            luma[0] = get_bits(&a->gb, 5) << 3;
81
 
            luma+= 4;
82
 
            *(cb++) = get_bits(&a->gb, 6) << 2;
83
 
            *(cr++) = get_bits(&a->gb, 6) << 2;
 
76
    p->pict_type = AV_PICTURE_TYPE_I;
 
77
    p->key_frame = 1;
 
78
 
 
79
    init_get_bits(&gb, buf, buf_size * 8);
 
80
 
 
81
    for (y = 0; y < avctx->height; y++) {
 
82
        uint8_t *luma = &a->picture.data[0][y * a->picture.linesize[0]];
 
83
        uint8_t *cb   = &a->picture.data[1][y * a->picture.linesize[1]];
 
84
        uint8_t *cr   = &a->picture.data[2][y * a->picture.linesize[2]];
 
85
        for (x = 0; x < avctx->width; x += 4) {
 
86
            luma[3] = get_bits(&gb, 5) << 3;
 
87
            luma[2] = get_bits(&gb, 5) << 3;
 
88
            luma[1] = get_bits(&gb, 5) << 3;
 
89
            luma[0] = get_bits(&gb, 5) << 3;
 
90
            luma += 4;
 
91
            *(cb++) = get_bits(&gb, 6) << 2;
 
92
            *(cr++) = get_bits(&gb, 6) << 2;
84
93
        }
85
94
    }
86
95
 
87
 
    *picture= *(AVFrame*)&a->picture;
 
96
    *picture   = a->picture;
88
97
    *data_size = sizeof(AVPicture);
89
98
 
90
 
    emms_c();
91
 
 
92
99
    return buf_size;
93
100
}
94
101
 
95
 
#if CONFIG_CLJR_ENCODER
96
 
static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
97
 
    CLJRContext * const a = avctx->priv_data;
98
 
    AVFrame *pict = data;
99
 
    AVFrame * const p= (AVFrame*)&a->picture;
100
 
    int size;
101
 
 
102
 
    *p = *pict;
103
 
    p->pict_type= AV_PICTURE_TYPE_I;
104
 
    p->key_frame= 1;
105
 
 
106
 
    emms_c();
107
 
 
108
 
    align_put_bits(&a->pb);
109
 
    while(get_bit_count(&a->pb)&31)
110
 
        put_bits(&a->pb, 8, 0);
111
 
 
112
 
    size= get_bit_count(&a->pb)/32;
113
 
 
114
 
    return size*4;
115
 
}
116
 
#endif
117
 
 
118
 
static av_cold void common_init(AVCodecContext *avctx){
119
 
    CLJRContext * const a = avctx->priv_data;
120
 
 
121
 
    avctx->coded_frame= (AVFrame*)&a->picture;
122
 
    a->avctx= avctx;
123
 
}
124
 
 
125
 
static av_cold int decode_init(AVCodecContext *avctx){
126
 
 
127
 
    common_init(avctx);
128
 
 
129
 
    avctx->pix_fmt= PIX_FMT_YUV411P;
130
 
 
131
 
    return 0;
132
 
}
133
 
 
134
 
#if CONFIG_CLJR_ENCODER
135
 
static av_cold int encode_init(AVCodecContext *avctx){
136
 
 
137
 
    common_init(avctx);
138
 
 
139
 
    return 0;
140
 
}
141
 
#endif
 
102
static av_cold int decode_init(AVCodecContext *avctx)
 
103
{
 
104
    avctx->pix_fmt = PIX_FMT_YUV411P;
 
105
    return common_init(avctx);
 
106
}
 
107
 
 
108
static av_cold int decode_end(AVCodecContext *avctx)
 
109
{
 
110
    CLJRContext *a = avctx->priv_data;
 
111
 
 
112
    if (a->picture.data[0])
 
113
        avctx->release_buffer(avctx, &a->picture);
 
114
    return 0;
 
115
}
142
116
 
143
117
AVCodec ff_cljr_decoder = {
144
 
    "cljr",
145
 
    AVMEDIA_TYPE_VIDEO,
146
 
    CODEC_ID_CLJR,
147
 
    sizeof(CLJRContext),
148
 
    decode_init,
149
 
    NULL,
150
 
    NULL,
151
 
    decode_frame,
152
 
    CODEC_CAP_DR1,
153
 
    .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
 
118
    .name           = "cljr",
 
119
    .type           = AVMEDIA_TYPE_VIDEO,
 
120
    .id             = CODEC_ID_CLJR,
 
121
    .priv_data_size = sizeof(CLJRContext),
 
122
    .init           = decode_init,
 
123
    .close          = decode_end,
 
124
    .decode         = decode_frame,
 
125
    .capabilities   = CODEC_CAP_DR1,
 
126
    .long_name      = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
154
127
};
 
128
#endif
155
129
 
156
130
#if CONFIG_CLJR_ENCODER
 
131
static int encode_frame(AVCodecContext *avctx, unsigned char *buf,
 
132
                        int buf_size, void *data)
 
133
{
 
134
    PutBitContext pb;
 
135
    AVFrame *p = data;
 
136
    int x, y;
 
137
 
 
138
    p->pict_type = AV_PICTURE_TYPE_I;
 
139
    p->key_frame = 1;
 
140
 
 
141
    init_put_bits(&pb, buf, buf_size / 8);
 
142
 
 
143
    for (y = 0; y < avctx->height; y++) {
 
144
        uint8_t *luma = &p->data[0][y * p->linesize[0]];
 
145
        uint8_t *cb   = &p->data[1][y * p->linesize[1]];
 
146
        uint8_t *cr   = &p->data[2][y * p->linesize[2]];
 
147
        for (x = 0; x < avctx->width; x += 4) {
 
148
            put_bits(&pb, 5, luma[3] >> 3);
 
149
            put_bits(&pb, 5, luma[2] >> 3);
 
150
            put_bits(&pb, 5, luma[1] >> 3);
 
151
            put_bits(&pb, 5, luma[0] >> 3);
 
152
            luma += 4;
 
153
            put_bits(&pb, 6, *(cb++) >> 2);
 
154
            put_bits(&pb, 6, *(cr++) >> 2);
 
155
        }
 
156
    }
 
157
 
 
158
    flush_put_bits(&pb);
 
159
 
 
160
    return put_bits_count(&pb) / 8;
 
161
}
 
162
 
157
163
AVCodec ff_cljr_encoder = {
158
 
    "cljr",
159
 
    AVMEDIA_TYPE_VIDEO,
160
 
    CODEC_ID_CLJR,
161
 
    sizeof(CLJRContext),
162
 
    encode_init,
163
 
    encode_frame,
164
 
    //encode_end,
165
 
    .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
 
164
    .name           = "cljr",
 
165
    .type           = AVMEDIA_TYPE_VIDEO,
 
166
    .id             = CODEC_ID_CLJR,
 
167
    .priv_data_size = sizeof(CLJRContext),
 
168
    .init           = common_init,
 
169
    .encode         = encode_frame,
 
170
    .pix_fmts       = (const enum PixelFormat[]) { PIX_FMT_YUV411P,
 
171
                                                   PIX_FMT_NONE },
 
172
    .long_name      = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
166
173
};
167
174
#endif