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