Mercurial > libavcodec.hg
annotate cljr.c @ 7354:456957d86106 libavcodec
My commit at r14340 was not the right solution. For a monochromatic
frame, there will be only one centroid and it will be impossible to
find three distinct ones. It is better to just avoid shifting if
there are not three different centroids.
author | vitor |
---|---|
date | Wed, 23 Jul 2008 05:54:34 +0000 |
parents | e943e1409077 |
children | 6efb15a24e91 |
rev | line source |
---|---|
1385 | 1 /* |
2 * Cirrus Logic AccuPak (CLJR) codec | |
3 * Copyright (c) 2003 Alex Beregszaszi | |
4 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
1385 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
1385 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
1385 | 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 | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
1385 | 20 */ |
2967 | 21 |
1385 | 22 /** |
23 * @file cljr.c | |
24 * Cirrus Logic AccuPak codec. | |
25 */ | |
2967 | 26 |
1385 | 27 #include "avcodec.h" |
6450 | 28 #include "dsputil.h" |
29 #include "bitstream.h" | |
1385 | 30 |
31 typedef struct CLJRContext{ | |
32 AVCodecContext *avctx; | |
33 AVFrame picture; | |
34 int delta[16]; | |
35 int offset[4]; | |
36 GetBitContext gb; | |
37 } CLJRContext; | |
38 | |
2967 | 39 static int decode_frame(AVCodecContext *avctx, |
1385 | 40 void *data, int *data_size, |
6229 | 41 const uint8_t *buf, int buf_size) |
1385 | 42 { |
43 CLJRContext * const a = avctx->priv_data; | |
44 AVFrame *picture = data; | |
45 AVFrame * const p= (AVFrame*)&a->picture; | |
1415 | 46 int x, y; |
1385 | 47 |
48 if(p->data[0]) | |
49 avctx->release_buffer(avctx, p); | |
50 | |
51 p->reference= 0; | |
52 if(avctx->get_buffer(avctx, p) < 0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1415
diff
changeset
|
53 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
1385 | 54 return -1; |
55 } | |
6450 | 56 p->pict_type= FF_I_TYPE; |
1385 | 57 p->key_frame= 1; |
58 | |
59 init_get_bits(&a->gb, buf, buf_size); | |
60 | |
61 for(y=0; y<avctx->height; y++){ | |
62 uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ]; | |
1386 | 63 uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ]; |
64 uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ]; | |
1385 | 65 for(x=0; x<avctx->width; x+=4){ |
2979 | 66 luma[3] = get_bits(&a->gb, 5) << 3; |
67 luma[2] = get_bits(&a->gb, 5) << 3; | |
68 luma[1] = get_bits(&a->gb, 5) << 3; | |
69 luma[0] = get_bits(&a->gb, 5) << 3; | |
70 luma+= 4; | |
71 *(cb++) = get_bits(&a->gb, 6) << 2; | |
72 *(cr++) = get_bits(&a->gb, 6) << 2; | |
1385 | 73 } |
74 } | |
75 | |
76 *picture= *(AVFrame*)&a->picture; | |
77 *data_size = sizeof(AVPicture); | |
78 | |
79 emms_c(); | |
2967 | 80 |
1385 | 81 return buf_size; |
82 } | |
83 | |
84 #if 0 | |
85 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ | |
86 CLJRContext * const a = avctx->priv_data; | |
87 AVFrame *pict = data; | |
88 AVFrame * const p= (AVFrame*)&a->picture; | |
89 int size; | |
90 int mb_x, mb_y; | |
91 | |
92 *p = *pict; | |
6450 | 93 p->pict_type= FF_I_TYPE; |
1385 | 94 p->key_frame= 1; |
95 | |
96 emms_c(); | |
2967 | 97 |
1385 | 98 align_put_bits(&a->pb); |
99 while(get_bit_count(&a->pb)&31) | |
100 put_bits(&a->pb, 8, 0); | |
2967 | 101 |
1385 | 102 size= get_bit_count(&a->pb)/32; |
2967 | 103 |
1385 | 104 return size*4; |
105 } | |
106 #endif | |
107 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
108 static av_cold void common_init(AVCodecContext *avctx){ |
1385 | 109 CLJRContext * const a = avctx->priv_data; |
110 | |
111 avctx->coded_frame= (AVFrame*)&a->picture; | |
112 a->avctx= avctx; | |
113 } | |
114 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
115 static av_cold int decode_init(AVCodecContext *avctx){ |
1415 | 116 |
1385 | 117 common_init(avctx); |
2967 | 118 |
1386 | 119 avctx->pix_fmt= PIX_FMT_YUV411P; |
1385 | 120 |
121 return 0; | |
122 } | |
123 | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2453
diff
changeset
|
124 #if 0 |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
125 static av_cold int encode_init(AVCodecContext *avctx){ |
1415 | 126 |
1385 | 127 common_init(avctx); |
2967 | 128 |
1385 | 129 return 0; |
130 } | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2453
diff
changeset
|
131 #endif |
1385 | 132 |
133 AVCodec cljr_decoder = { | |
134 "cljr", | |
135 CODEC_TYPE_VIDEO, | |
136 CODEC_ID_CLJR, | |
137 sizeof(CLJRContext), | |
138 decode_init, | |
139 NULL, | |
1994 | 140 NULL, |
1385 | 141 decode_frame, |
142 CODEC_CAP_DR1, | |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6710
diff
changeset
|
143 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), |
1385 | 144 }; |
145 #if 0 | |
146 #ifdef CONFIG_ENCODERS | |
147 | |
148 AVCodec cljr_encoder = { | |
149 "cljr", | |
150 CODEC_TYPE_VIDEO, | |
151 CODEC_ID_cljr, | |
152 sizeof(CLJRContext), | |
153 encode_init, | |
154 encode_frame, | |
155 //encode_end, | |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6710
diff
changeset
|
156 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), |
1385 | 157 }; |
158 | |
159 #endif //CONFIG_ENCODERS | |
160 #endif |