Mercurial > libavcodec.hg
annotate cljr.c @ 8546:5800aecff5f8 libavcodec
Use <> instead of "" for system headers.
| author | diego |
|---|---|
| date | Wed, 07 Jan 2009 18:24:16 +0000 |
| parents | e3f2d90a2295 |
| children | 7a463923ecd1 |
| 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 |
|
7784
e3f2d90a2295
Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents:
7783
diff
changeset
|
31 /* Disable the encoder. */ |
|
e3f2d90a2295
Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents:
7783
diff
changeset
|
32 #undef CONFIG_CLJR_ENCODER |
|
e3f2d90a2295
Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents:
7783
diff
changeset
|
33 |
| 1385 | 34 typedef struct CLJRContext{ |
| 35 AVCodecContext *avctx; | |
| 36 AVFrame picture; | |
| 37 int delta[16]; | |
| 38 int offset[4]; | |
| 39 GetBitContext gb; | |
| 40 } CLJRContext; | |
| 41 | |
| 2967 | 42 static int decode_frame(AVCodecContext *avctx, |
| 1385 | 43 void *data, int *data_size, |
| 6229 | 44 const uint8_t *buf, int buf_size) |
| 1385 | 45 { |
| 46 CLJRContext * const a = avctx->priv_data; | |
| 47 AVFrame *picture = data; | |
| 48 AVFrame * const p= (AVFrame*)&a->picture; | |
| 1415 | 49 int x, y; |
| 1385 | 50 |
| 51 if(p->data[0]) | |
| 52 avctx->release_buffer(avctx, p); | |
| 53 | |
| 54 p->reference= 0; | |
| 55 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
|
56 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
| 1385 | 57 return -1; |
| 58 } | |
| 6450 | 59 p->pict_type= FF_I_TYPE; |
| 1385 | 60 p->key_frame= 1; |
| 61 | |
| 62 init_get_bits(&a->gb, buf, buf_size); | |
| 63 | |
| 64 for(y=0; y<avctx->height; y++){ | |
| 65 uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ]; | |
| 1386 | 66 uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ]; |
| 67 uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ]; | |
| 1385 | 68 for(x=0; x<avctx->width; x+=4){ |
| 2979 | 69 luma[3] = get_bits(&a->gb, 5) << 3; |
| 70 luma[2] = get_bits(&a->gb, 5) << 3; | |
| 71 luma[1] = get_bits(&a->gb, 5) << 3; | |
| 72 luma[0] = get_bits(&a->gb, 5) << 3; | |
| 73 luma+= 4; | |
| 74 *(cb++) = get_bits(&a->gb, 6) << 2; | |
| 75 *(cr++) = get_bits(&a->gb, 6) << 2; | |
| 1385 | 76 } |
| 77 } | |
| 78 | |
| 79 *picture= *(AVFrame*)&a->picture; | |
| 80 *data_size = sizeof(AVPicture); | |
| 81 | |
| 82 emms_c(); | |
| 2967 | 83 |
| 1385 | 84 return buf_size; |
| 85 } | |
| 86 | |
|
7783
12a25666f1e4
Surround some encoding-specific functions with the appropriate
diego
parents:
7782
diff
changeset
|
87 #ifdef CONFIG_CLJR_ENCODER |
| 1385 | 88 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ |
| 89 CLJRContext * const a = avctx->priv_data; | |
| 90 AVFrame *pict = data; | |
| 91 AVFrame * const p= (AVFrame*)&a->picture; | |
| 92 int size; | |
| 93 int mb_x, mb_y; | |
| 94 | |
| 95 *p = *pict; | |
| 6450 | 96 p->pict_type= FF_I_TYPE; |
| 1385 | 97 p->key_frame= 1; |
| 98 | |
| 99 emms_c(); | |
| 2967 | 100 |
| 1385 | 101 align_put_bits(&a->pb); |
| 102 while(get_bit_count(&a->pb)&31) | |
| 103 put_bits(&a->pb, 8, 0); | |
| 2967 | 104 |
| 1385 | 105 size= get_bit_count(&a->pb)/32; |
| 2967 | 106 |
| 1385 | 107 return size*4; |
| 108 } | |
| 109 #endif | |
| 110 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
111 static av_cold void common_init(AVCodecContext *avctx){ |
| 1385 | 112 CLJRContext * const a = avctx->priv_data; |
| 113 | |
| 114 avctx->coded_frame= (AVFrame*)&a->picture; | |
| 115 a->avctx= avctx; | |
| 116 } | |
| 117 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
118 static av_cold int decode_init(AVCodecContext *avctx){ |
| 1415 | 119 |
| 1385 | 120 common_init(avctx); |
| 2967 | 121 |
| 1386 | 122 avctx->pix_fmt= PIX_FMT_YUV411P; |
| 1385 | 123 |
| 124 return 0; | |
| 125 } | |
| 126 | |
|
7783
12a25666f1e4
Surround some encoding-specific functions with the appropriate
diego
parents:
7782
diff
changeset
|
127 #ifdef CONFIG_CLJR_ENCODER |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
128 static av_cold int encode_init(AVCodecContext *avctx){ |
| 1415 | 129 |
| 1385 | 130 common_init(avctx); |
| 2967 | 131 |
| 1385 | 132 return 0; |
| 133 } | |
|
2522
e25782262d7d
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2453
diff
changeset
|
134 #endif |
| 1385 | 135 |
| 136 AVCodec cljr_decoder = { | |
| 137 "cljr", | |
| 138 CODEC_TYPE_VIDEO, | |
| 139 CODEC_ID_CLJR, | |
| 140 sizeof(CLJRContext), | |
| 141 decode_init, | |
| 142 NULL, | |
| 1994 | 143 NULL, |
| 1385 | 144 decode_frame, |
| 145 CODEC_CAP_DR1, | |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6710
diff
changeset
|
146 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), |
| 1385 | 147 }; |
|
7784
e3f2d90a2295
Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents:
7783
diff
changeset
|
148 |
|
7782
6efb15a24e91
Replace generic CONFIG_ENCODERS preprocessor conditionals by more specific
diego
parents:
7040
diff
changeset
|
149 #ifdef CONFIG_CLJR_ENCODER |
| 1385 | 150 AVCodec cljr_encoder = { |
| 151 "cljr", | |
| 152 CODEC_TYPE_VIDEO, | |
| 153 CODEC_ID_cljr, | |
| 154 sizeof(CLJRContext), | |
| 155 encode_init, | |
| 156 encode_frame, | |
| 157 //encode_end, | |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6710
diff
changeset
|
158 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"), |
| 1385 | 159 }; |
| 160 #endif |
