annotate cljr.c @ 12475:9fef0a8ddd63 libavcodec

Move mm_support() from libavcodec to libavutil, make it a public function and rename it to av_get_cpu_flags().
author stefano
date Wed, 08 Sep 2010 15:07:14 +0000
parents 7dd2a45249a9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
1 /*
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
2 * Cirrus Logic AccuPak (CLJR) codec
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
3 * Copyright (c) 2003 Alex Beregszaszi
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
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
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
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
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
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
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
15 * Lesser General Public License for more details.
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
16 *
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
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
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
20 */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
21
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
22 /**
11644
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 11560
diff changeset
23 * @file
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
24 * Cirrus Logic AccuPak codec.
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
25 */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
26
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
27 #include "avcodec.h"
6450
c32be43b52b2 remove more useless mpegvideo.h includes
aurel
parents: 6229
diff changeset
28 #include "dsputil.h"
9428
0dce4fe6e6f3 Rename bitstream.h to get_bits.h.
stefano
parents: 9355
diff changeset
29 #include "get_bits.h"
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
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
7a463923ecd1 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 7784
diff changeset
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
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
35 typedef struct CLJRContext{
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
36 AVCodecContext *avctx;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
37 AVFrame picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
38 int delta[16];
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
39 int offset[4];
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
40 GetBitContext gb;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
41 } CLJRContext;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
42
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
43 static int decode_frame(AVCodecContext *avctx,
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
44 void *data, int *data_size,
9355
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 8765
diff changeset
45 AVPacket *avpkt)
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
46 {
9355
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 8765
diff changeset
47 const uint8_t *buf = avpkt->data;
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 8765
diff changeset
48 int buf_size = avpkt->size;
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
49 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
50 AVFrame *picture = data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
51 AVFrame * const p= (AVFrame*)&a->picture;
1415
9a218b289ee0 removed unused variables
bellard
parents: 1386
diff changeset
52 int x, y;
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
53
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
54 if(p->data[0])
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
55 avctx->release_buffer(avctx, p);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
56
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
57 p->reference= 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
58 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
59 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
60 return -1;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
61 }
6450
c32be43b52b2 remove more useless mpegvideo.h includes
aurel
parents: 6229
diff changeset
62 p->pict_type= FF_I_TYPE;
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
63 p->key_frame= 1;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
64
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
65 init_get_bits(&a->gb, buf, buf_size);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
66
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
67 for(y=0; y<avctx->height; y++){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
68 uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
1386
5cabff29411e 410p -> 411p
al3x
parents: 1385
diff changeset
69 uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ];
5cabff29411e 410p -> 411p
al3x
parents: 1385
diff changeset
70 uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ];
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
71 for(x=0; x<avctx->width; x+=4){
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
72 luma[3] = get_bits(&a->gb, 5) << 3;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
73 luma[2] = get_bits(&a->gb, 5) << 3;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
74 luma[1] = get_bits(&a->gb, 5) << 3;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
75 luma[0] = get_bits(&a->gb, 5) << 3;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
76 luma+= 4;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
77 *(cb++) = get_bits(&a->gb, 6) << 2;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
78 *(cr++) = get_bits(&a->gb, 6) << 2;
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
79 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
80 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
81
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
82 *picture= *(AVFrame*)&a->picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
83 *data_size = sizeof(AVPicture);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
84
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
85 emms_c();
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
86
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
87 return buf_size;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
88 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
89
8590
7a463923ecd1 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 7784
diff changeset
90 #if CONFIG_CLJR_ENCODER
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
91 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
92 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
93 AVFrame *pict = data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
94 AVFrame * const p= (AVFrame*)&a->picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
95 int size;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
96
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
97 *p = *pict;
6450
c32be43b52b2 remove more useless mpegvideo.h includes
aurel
parents: 6229
diff changeset
98 p->pict_type= FF_I_TYPE;
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
99 p->key_frame= 1;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
100
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
101 emms_c();
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
102
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
103 align_put_bits(&a->pb);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
104 while(get_bit_count(&a->pb)&31)
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
105 put_bits(&a->pb, 8, 0);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
106
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
107 size= get_bit_count(&a->pb)/32;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
108
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
109 return size*4;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
110 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
111 #endif
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
112
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6450
diff changeset
113 static av_cold void common_init(AVCodecContext *avctx){
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
114 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
115
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
116 avctx->coded_frame= (AVFrame*)&a->picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
117 a->avctx= avctx;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
118 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
119
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6450
diff changeset
120 static av_cold int decode_init(AVCodecContext *avctx){
1415
9a218b289ee0 removed unused variables
bellard
parents: 1386
diff changeset
121
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
122 common_init(avctx);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
123
1386
5cabff29411e 410p -> 411p
al3x
parents: 1385
diff changeset
124 avctx->pix_fmt= PIX_FMT_YUV411P;
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
125
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
126 return 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
127 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
128
8590
7a463923ecd1 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 7784
diff changeset
129 #if CONFIG_CLJR_ENCODER
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6450
diff changeset
130 static av_cold int encode_init(AVCodecContext *avctx){
1415
9a218b289ee0 removed unused variables
bellard
parents: 1386
diff changeset
131
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
132 common_init(avctx);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2522
diff changeset
133
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
134 return 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
135 }
2522
e25782262d7d kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents: 2453
diff changeset
136 #endif
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
137
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
138 AVCodec cljr_decoder = {
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
139 "cljr",
11560
8a4984c5cacc Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 9428
diff changeset
140 AVMEDIA_TYPE_VIDEO,
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
141 CODEC_ID_CLJR,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
142 sizeof(CLJRContext),
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
143 decode_init,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
144 NULL,
1994
8d3540dddd1b cleanup & memleak fix
michael
parents: 1598
diff changeset
145 NULL,
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
146 decode_frame,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
147 CODEC_CAP_DR1,
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6710
diff changeset
148 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
149 };
7784
e3f2d90a2295 Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents: 7783
diff changeset
150
8590
7a463923ecd1 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 7784
diff changeset
151 #if CONFIG_CLJR_ENCODER
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
152 AVCodec cljr_encoder = {
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
153 "cljr",
11560
8a4984c5cacc Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 9428
diff changeset
154 AVMEDIA_TYPE_VIDEO,
8764
aa68b04560ba typo: CODEC_ID_cljr --> CODEC_ID_CLJR
diego
parents: 8718
diff changeset
155 CODEC_ID_CLJR,
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
156 sizeof(CLJRContext),
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
157 encode_init,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
158 encode_frame,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
159 //encode_end,
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6710
diff changeset
160 .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
161 };
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
162 #endif