2 * lossless JPEG encoder
3 * Copyright (c) 2000, 2001 Fabrice Bellard
4 * Copyright (c) 2003 Alex Beregszaszi
5 * Copyright (c) 2003-2004 Michael Niedermayer
7 * Support for external huffman table, various fixes (AVID workaround),
8 * aspecting, new decode_frame mechanism and apple mjpeg-b support
11 * This file is part of Libav.
13 * Libav 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.
18 * Libav 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.
23 * You should have received a copy of the GNU Lesser General Public
24 * License along with Libav; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30 * lossless JPEG encoder.
36 #include "mpegvideo.h"
41 static int encode_picture_lossless(AVCodecContext *avctx, AVPacket *pkt,
42 const AVFrame *pict, int *got_packet)
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;
54 if (avctx->pix_fmt == PIX_FMT_BGRA)
55 max_pkt_size += width * height * 3 * 4;
57 max_pkt_size += mb_width * mb_height * 3 * 4
58 * s->mjpeg_hsample[0] * s->mjpeg_vsample[0];
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);
65 init_put_bits(&s->pb, pkt->data, pkt->size);
68 p->pict_type= AV_PICTURE_TYPE_I;
71 ff_mjpeg_encode_picture_header(s);
73 s->header_bits= put_bits_count(&s->pb);
75 if(avctx->pix_fmt == PIX_FMT_BGRA){
77 const int linesize= p->linesize[0];
78 uint16_t (*buffer)[4]= (void *) s->rd_scratchpad;
79 int left[3], top[3], topleft[3];
82 buffer[0][i]= 1 << (9 - 1);
85 for(y = 0; y < height; y++) {
86 const int modified_predictor= y ? predictor : 1;
87 uint8_t *ptr = p->data[0] + (linesize * y);
89 if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < width*3*4){
90 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
95 top[i]= left[i]= topleft[i]= buffer[0][i];
97 for(x = 0; x < width; x++) {
98 buffer[x][1] = ptr[4*x+0] - ptr[4*x+1] + 0x100;
99 buffer[x][2] = ptr[4*x+2] - ptr[4*x+1] + 0x100;
100 buffer[x][0] = (ptr[4*x+0] + 2*ptr[4*x+1] + ptr[4*x+2])>>2;
105 PREDICT(pred, topleft[i], top[i], left[i], modified_predictor);
108 top[i]= buffer[x+1][i];
110 left[i]= buffer[x][i];
112 diff= ((left[i] - pred + 0x100)&0x1FF) - 0x100;
115 ff_mjpeg_encode_dc(s, diff, m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
117 ff_mjpeg_encode_dc(s, diff, m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
124 for(mb_y = 0; mb_y < mb_height; mb_y++) {
125 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]){
126 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
129 for(mb_x = 0; mb_x < mb_width; mb_x++) {
130 if(mb_x==0 || mb_y==0){
133 int x, y, h, v, linesize;
134 h = s->mjpeg_hsample[i];
135 v = s->mjpeg_vsample[i];
136 linesize= p->linesize[i];
142 ptr = p->data[i] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
151 pred= ptr[-linesize];
153 PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
158 ff_mjpeg_encode_dc(s, *ptr - pred, m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
160 ff_mjpeg_encode_dc(s, *ptr - pred, m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
167 int x, y, h, v, linesize;
168 h = s->mjpeg_hsample[i];
169 v = s->mjpeg_vsample[i];
170 linesize= p->linesize[i];
176 ptr = p->data[i] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
177 //printf("%d %d %d %d %8X\n", mb_x, mb_y, x, y, ptr);
178 PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
181 ff_mjpeg_encode_dc(s, *ptr - pred, m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
183 ff_mjpeg_encode_dc(s, *ptr - pred, m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
194 ff_mjpeg_encode_picture_trailer(s);
197 flush_put_bits(&s->pb);
198 pkt->size = put_bits_ptr(&s->pb) - s->pb.buf;
199 pkt->flags |= AV_PKT_FLAG_KEY;
203 // return (put_bits_count(&f->pb)+7)/8;
207 AVCodec ff_ljpeg_encoder = { //FIXME avoid MPV_* lossless JPEG should not need them
209 .type = AVMEDIA_TYPE_VIDEO,
210 .id = CODEC_ID_LJPEG,
211 .priv_data_size = sizeof(MpegEncContext),
212 .init = ff_MPV_encode_init,
213 .encode2 = encode_picture_lossless,
214 .close = ff_MPV_encode_end,
215 .long_name = NULL_IF_CONFIG_SMALL("Lossless JPEG"),