]> git.sesse.net Git - ffmpeg/blob - libavcodec/ljpegenc.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / ljpegenc.c
1 /*
2  * lossless JPEG encoder
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  * Copyright (c) 2003 Alex Beregszaszi
5  * Copyright (c) 2003-2004 Michael Niedermayer
6  *
7  * Support for external huffman table, various fixes (AVID workaround),
8  * aspecting, new decode_frame mechanism and apple mjpeg-b support
9  *                                  by Alex Beregszaszi
10  *
11  * This file is part of FFmpeg.
12  *
13  * FFmpeg is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU Lesser General Public
15  * License as published by the Free Software Foundation; either
16  * version 2.1 of the License, or (at your option) any later version.
17  *
18  * FFmpeg is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  * Lesser General Public License for more details.
22  *
23  * You should have received a copy of the GNU Lesser General Public
24  * License along with FFmpeg; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26  */
27
28 /**
29  * @file
30  * lossless JPEG encoder.
31  */
32
33 #include "avcodec.h"
34 #include "dsputil.h"
35 #include "internal.h"
36 #include "mpegvideo.h"
37 #include "mjpeg.h"
38 #include "mjpegenc.h"
39
40
41 static int encode_picture_lossless(AVCodecContext *avctx, AVPacket *pkt,
42                                    const AVFrame *pict, int *got_packet)
43 {
44     MpegEncContext * const s = avctx->priv_data;
45     MJpegContext * const m = s->mjpeg_ctx;
46     const int width= s->width;
47     const int height= s->height;
48     AVFrame * const p = &s->current_picture.f;
49     const int predictor= avctx->prediction_method+1;
50     const int mb_width  = (width  + s->mjpeg_hsample[0] - 1) / s->mjpeg_hsample[0];
51     const int mb_height = (height + s->mjpeg_vsample[0] - 1) / s->mjpeg_vsample[0];
52     int ret, max_pkt_size = FF_MIN_BUFFER_SIZE;
53
54     if (avctx->pix_fmt == PIX_FMT_BGRA)
55         max_pkt_size += width * height * 3 * 4;
56     else {
57         max_pkt_size += mb_width * mb_height * 3 * 4
58                         * s->mjpeg_hsample[0] * s->mjpeg_vsample[0];
59     }
60     if ((ret = ff_alloc_packet(pkt, max_pkt_size)) < 0) {
61         av_log(avctx, AV_LOG_ERROR, "Error getting output packet of size %d.\n", max_pkt_size);
62         return ret;
63     }
64
65     init_put_bits(&s->pb, pkt->data, pkt->size);
66
67     *p = *pict;
68     p->pict_type= AV_PICTURE_TYPE_I;
69     p->key_frame= 1;
70
71     ff_mjpeg_encode_picture_header(s);
72
73     s->header_bits= put_bits_count(&s->pb);
74
75     if(avctx->pix_fmt == PIX_FMT_BGR0
76         || avctx->pix_fmt == PIX_FMT_BGRA
77         || avctx->pix_fmt == PIX_FMT_BGR24){
78         int x, y, i;
79         const int linesize= p->linesize[0];
80         uint16_t (*buffer)[4]= (void *) s->rd_scratchpad;
81         int left[3], top[3], topleft[3];
82
83         for(i=0; i<3; i++){
84             buffer[0][i]= 1 << (9 - 1);
85         }
86
87         for(y = 0; y < height; y++) {
88             const int modified_predictor= y ? predictor : 1;
89             uint8_t *ptr = p->data[0] + (linesize * y);
90
91             if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < width*3*4){
92                 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
93                 return -1;
94             }
95
96             for(i=0; i<3; i++){
97                 top[i]= left[i]= topleft[i]= buffer[0][i];
98             }
99             for(x = 0; x < width; x++) {
100                 if(avctx->pix_fmt == PIX_FMT_BGR24){
101                     buffer[x][1] = ptr[3*x+0] - ptr[3*x+1] + 0x100;
102                     buffer[x][2] = ptr[3*x+2] - ptr[3*x+1] + 0x100;
103                     buffer[x][0] = (ptr[3*x+0] + 2*ptr[3*x+1] + ptr[3*x+2])>>2;
104                 }else{
105                 buffer[x][1] = ptr[4*x+0] - ptr[4*x+1] + 0x100;
106                 buffer[x][2] = ptr[4*x+2] - ptr[4*x+1] + 0x100;
107                 buffer[x][0] = (ptr[4*x+0] + 2*ptr[4*x+1] + ptr[4*x+2])>>2;
108                 }
109
110                 for(i=0;i<3;i++) {
111                     int pred, diff;
112
113                     PREDICT(pred, topleft[i], top[i], left[i], modified_predictor);
114
115                     topleft[i]= top[i];
116                     top[i]= buffer[x+1][i];
117
118                     left[i]= buffer[x][i];
119
120                     diff= ((left[i] - pred + 0x100)&0x1FF) - 0x100;
121
122                     if(i==0)
123                         ff_mjpeg_encode_dc(s, diff, m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
124                     else
125                         ff_mjpeg_encode_dc(s, diff, m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
126                 }
127             }
128         }
129     }else{
130         int mb_x, mb_y, i;
131
132         for(mb_y = 0; mb_y < mb_height; mb_y++) {
133             if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < mb_width * 4 * 3 * s->mjpeg_hsample[0] * s->mjpeg_vsample[0]){
134                 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
135                 return -1;
136             }
137             for(mb_x = 0; mb_x < mb_width; mb_x++) {
138                 if(mb_x==0 || mb_y==0){
139                     for(i=0;i<3;i++) {
140                         uint8_t *ptr;
141                         int x, y, h, v, linesize;
142                         h = s->mjpeg_hsample[i];
143                         v = s->mjpeg_vsample[i];
144                         linesize= p->linesize[i];
145
146                         for(y=0; y<v; y++){
147                             for(x=0; x<h; x++){
148                                 int pred;
149
150                                 ptr = p->data[i] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
151                                 if(y==0 && mb_y==0){
152                                     if(x==0 && mb_x==0){
153                                         pred= 128;
154                                     }else{
155                                         pred= ptr[-1];
156                                     }
157                                 }else{
158                                     if(x==0 && mb_x==0){
159                                         pred= ptr[-linesize];
160                                     }else{
161                                         PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
162                                     }
163                                 }
164
165                                 if(i==0)
166                                     ff_mjpeg_encode_dc(s, *ptr - pred, m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
167                                 else
168                                     ff_mjpeg_encode_dc(s, *ptr - pred, m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
169                             }
170                         }
171                     }
172                 }else{
173                     for(i=0;i<3;i++) {
174                         uint8_t *ptr;
175                         int x, y, h, v, linesize;
176                         h = s->mjpeg_hsample[i];
177                         v = s->mjpeg_vsample[i];
178                         linesize= p->linesize[i];
179
180                         for(y=0; y<v; y++){
181                             for(x=0; x<h; x++){
182                                 int pred;
183
184                                 ptr = p->data[i] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
185 //printf("%d %d %d %d %8X\n", mb_x, mb_y, x, y, ptr);
186                                 PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
187
188                                 if(i==0)
189                                     ff_mjpeg_encode_dc(s, *ptr - pred, m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
190                                 else
191                                     ff_mjpeg_encode_dc(s, *ptr - pred, m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
192                             }
193                         }
194                     }
195                 }
196             }
197         }
198     }
199
200     emms_c();
201
202     ff_mjpeg_encode_picture_trailer(s);
203     s->picture_number++;
204
205     flush_put_bits(&s->pb);
206     pkt->size   = put_bits_ptr(&s->pb) - s->pb.buf;
207     pkt->flags |= AV_PKT_FLAG_KEY;
208     *got_packet = 1;
209
210     return 0;
211 //    return (put_bits_count(&f->pb)+7)/8;
212 }
213
214
215 AVCodec ff_ljpeg_encoder = { //FIXME avoid MPV_* lossless JPEG should not need them
216     .name           = "ljpeg",
217     .type           = AVMEDIA_TYPE_VIDEO,
218     .id             = CODEC_ID_LJPEG,
219     .priv_data_size = sizeof(MpegEncContext),
220     .init           = ff_MPV_encode_init,
221     .encode2        = encode_picture_lossless,
222     .close          = ff_MPV_encode_end,
223     .long_name      = NULL_IF_CONFIG_SMALL("Lossless JPEG"),
224 };