huffyuv.c 40.5 KB
Newer Older
M
huffyuv  
Michael Niedermayer 已提交
1 2 3
/*
 * huffyuv codec for libavcodec
 *
M
10l  
Michael Niedermayer 已提交
4
 * Copyright (c) 2002-2003 Michael Niedermayer <michaelni@gmx.at>
M
huffyuv  
Michael Niedermayer 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * see http://www.pcisys.net/~melanson/codecs/huffyuv.txt for a description of
 * the algorithm used 
 */
M
Michael Niedermayer 已提交
23 24 25 26 27
 
/**
 * @file huffyuv.c
 * huffyuv codec for libavcodec.
 */
M
huffyuv  
Michael Niedermayer 已提交
28 29 30 31 32 33

#include "common.h"
#include "avcodec.h"
#include "dsputil.h"

#define VLC_BITS 11
M
cleanup  
Michael Niedermayer 已提交
34

M
Michael Niedermayer 已提交
35 36 37 38 39 40 41 42 43 44
#ifdef WORDS_BIGENDIAN
#define B 3
#define G 2
#define R 1
#else
#define B 0
#define G 1
#define R 2
#endif

M
huffyuv  
Michael Niedermayer 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
typedef enum Predictor{
    LEFT= 0,
    PLANE,
    MEDIAN,
} Predictor;
 
typedef struct HYuvContext{
    AVCodecContext *avctx;
    Predictor predictor;
    GetBitContext gb;
    PutBitContext pb;
    int interlaced;
    int decorrelate;
    int bitstream_bpp;
    int version;
    int yuy2;                               //use yuy2 instead of 422P
    int bgr32;                              //use bgr32 instead of bgr24
    int width, height;
    int flags;
L
Loren Merritt 已提交
64
    int context;
M
huffyuv  
Michael Niedermayer 已提交
65
    int picture_number;
M
Michael Niedermayer 已提交
66
    int last_slice_end;
M
Michael Niedermayer 已提交
67
    uint8_t __align8 temp[3][2560];
M
huffyuv  
Michael Niedermayer 已提交
68 69 70 71
    uint64_t stats[3][256];
    uint8_t len[3][256];
    uint32_t bits[3][256];
    VLC vlc[3];
M
Michael Niedermayer 已提交
72
    AVFrame picture;
M
huffyuv  
Michael Niedermayer 已提交
73 74 75 76
    uint8_t __align8 bitstream_buffer[1024*1024*3]; //FIXME dynamic alloc or some other solution
    DSPContext dsp; 
}HYuvContext;

Z
Zdenek Kabelac 已提交
77
static const unsigned char classic_shift_luma[] = {
78 79 80 81 82
  34,36,35,69,135,232,9,16,10,24,11,23,12,16,13,10,14,8,15,8,
  16,8,17,20,16,10,207,206,205,236,11,8,10,21,9,23,8,8,199,70,
  69,68, 0
};

Z
Zdenek Kabelac 已提交
83
static const unsigned char classic_shift_chroma[] = {
84 85 86 87 88
  66,36,37,38,39,40,41,75,76,77,110,239,144,81,82,83,84,85,118,183,
  56,57,88,89,56,89,154,57,58,57,26,141,57,56,58,57,58,57,184,119,
  214,245,116,83,82,49,80,79,78,77,44,75,41,40,39,38,37,36,34, 0
};

Z
Zdenek Kabelac 已提交
89
static const unsigned char classic_add_luma[256] = {
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    3,  9,  5, 12, 10, 35, 32, 29, 27, 50, 48, 45, 44, 41, 39, 37,
   73, 70, 68, 65, 64, 61, 58, 56, 53, 50, 49, 46, 44, 41, 38, 36,
   68, 65, 63, 61, 58, 55, 53, 51, 48, 46, 45, 43, 41, 39, 38, 36,
   35, 33, 32, 30, 29, 27, 26, 25, 48, 47, 46, 44, 43, 41, 40, 39,
   37, 36, 35, 34, 32, 31, 30, 28, 27, 26, 24, 23, 22, 20, 19, 37,
   35, 34, 33, 31, 30, 29, 27, 26, 24, 23, 21, 20, 18, 17, 15, 29,
   27, 26, 24, 22, 21, 19, 17, 16, 14, 26, 25, 23, 21, 19, 18, 16,
   15, 27, 25, 23, 21, 19, 17, 16, 14, 26, 25, 23, 21, 18, 17, 14,
   12, 17, 19, 13,  4,  9,  2, 11,  1,  7,  8,  0, 16,  3, 14,  6,
   12, 10,  5, 15, 18, 11, 10, 13, 15, 16, 19, 20, 22, 24, 27, 15,
   18, 20, 22, 24, 26, 14, 17, 20, 22, 24, 27, 15, 18, 20, 23, 25,
   28, 16, 19, 22, 25, 28, 32, 36, 21, 25, 29, 33, 38, 42, 45, 49,
   28, 31, 34, 37, 40, 42, 44, 47, 49, 50, 52, 54, 56, 57, 59, 60,
   62, 64, 66, 67, 69, 35, 37, 39, 40, 42, 43, 45, 47, 48, 51, 52,
   54, 55, 57, 59, 60, 62, 63, 66, 67, 69, 71, 72, 38, 40, 42, 43,
   46, 47, 49, 51, 26, 28, 30, 31, 33, 34, 18, 19, 11, 13,  7,  8,
};

Z
Zdenek Kabelac 已提交
108
static const unsigned char classic_add_chroma[256] = {
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
    3,  1,  2,  2,  2,  2,  3,  3,  7,  5,  7,  5,  8,  6, 11,  9,
    7, 13, 11, 10,  9,  8,  7,  5,  9,  7,  6,  4,  7,  5,  8,  7,
   11,  8, 13, 11, 19, 15, 22, 23, 20, 33, 32, 28, 27, 29, 51, 77,
   43, 45, 76, 81, 46, 82, 75, 55, 56,144, 58, 80, 60, 74,147, 63,
  143, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
   80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 27, 30, 21, 22,
   17, 14,  5,  6,100, 54, 47, 50, 51, 53,106,107,108,109,110,111,
  112,113,114,115,  4,117,118, 92, 94,121,122,  3,124,103,  2,  1,
    0,129,130,131,120,119,126,125,136,137,138,139,140,141,142,134,
  135,132,133,104, 64,101, 62, 57,102, 95, 93, 59, 61, 28, 97, 96,
   52, 49, 48, 29, 32, 25, 24, 46, 23, 98, 45, 44, 43, 20, 42, 41,
   19, 18, 99, 40, 15, 39, 38, 16, 13, 12, 11, 37, 10,  9,  8, 36,
    7,128,127,105,123,116, 35, 34, 33,145, 31, 79, 42,146, 78, 26,
   83, 48, 49, 50, 44, 47, 26, 31, 30, 18, 17, 19, 21, 24, 25, 13,
   14, 16, 17, 18, 20, 21, 12, 14, 15,  9, 10,  6,  9,  6,  5,  8,
    6, 12,  8, 10,  7,  9,  6,  4,  6,  2,  2,  3,  3,  3,  3,  2,
};

M
huffyuv  
Michael Niedermayer 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
static inline int add_left_prediction(uint8_t *dst, uint8_t *src, int w, int acc){
    int i;

    for(i=0; i<w-1; i++){
        acc+= src[i];
        dst[i]= acc;
        i++;
        acc+= src[i];
        dst[i]= acc;
    }

    for(; i<w; i++){
        acc+= src[i];
        dst[i]= acc;
    }

    return acc;
}

static inline void add_median_prediction(uint8_t *dst, uint8_t *src1, uint8_t *diff, int w, int *left, int *left_top){
    int i;
    uint8_t l, lt;

    l= *left;
    lt= *left_top;

    for(i=0; i<w; i++){
        l= mid_pred(l, src1[i], (l + src1[i] - lt)&0xFF) + diff[i];
        lt= src1[i];
        dst[i]= l;
    }    

    *left= l;
    *left_top= lt;
}
162

M
huffyuv  
Michael Niedermayer 已提交
163 164 165 166 167 168 169 170
static inline void add_left_prediction_bgr32(uint8_t *dst, uint8_t *src, int w, int *red, int *green, int *blue){
    int i;
    int r,g,b;
    r= *red;
    g= *green;
    b= *blue;

    for(i=0; i<w; i++){
M
Michael Niedermayer 已提交
171 172 173
        b+= src[4*i+B];
        g+= src[4*i+G];
        r+= src[4*i+R];
M
huffyuv  
Michael Niedermayer 已提交
174
        
M
Michael Niedermayer 已提交
175 176 177
        dst[4*i+B]= b;
        dst[4*i+G]= g;
        dst[4*i+R]= r;
M
huffyuv  
Michael Niedermayer 已提交
178 179 180 181 182 183 184
    }

    *red= r;
    *green= g;
    *blue= b;
}

M
Michael Niedermayer 已提交
185
static inline int sub_left_prediction(HYuvContext *s, uint8_t *dst, uint8_t *src, int w, int left){
M
huffyuv  
Michael Niedermayer 已提交
186
    int i;
M
Michael Niedermayer 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
    if(w<32){
        for(i=0; i<w; i++){
            const int temp= src[i];
            dst[i]= temp - left;
            left= temp;
        }
        return left;
    }else{
        for(i=0; i<16; i++){
            const int temp= src[i];
            dst[i]= temp - left;
            left= temp;
        }
        s->dsp.diff_bytes(dst+16, src+16, src+15, w-16);
        return src[w-1];
M
huffyuv  
Michael Niedermayer 已提交
202 203
    }
}
M
Michael Niedermayer 已提交
204

M
huffyuv  
Michael Niedermayer 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
static void read_len_table(uint8_t *dst, GetBitContext *gb){
    int i, val, repeat;
  
    for(i=0; i<256;){
        repeat= get_bits(gb, 3);
        val   = get_bits(gb, 5);
        if(repeat==0)
            repeat= get_bits(gb, 8);
//printf("%d %d\n", val, repeat);
        while (repeat--)
            dst[i++] = val;
    }
}

static int generate_bits_table(uint32_t *dst, uint8_t *len_table){
    int len, index;
    uint32_t bits=0;

    for(len=32; len>0; len--){
        for(index=0; index<256; index++){
M
cleanup  
Michael Niedermayer 已提交
225 226
            if(len_table[index]==len)
                dst[index]= bits++;
M
huffyuv  
Michael Niedermayer 已提交
227
        }
M
cleanup  
Michael Niedermayer 已提交
228
        if(bits & 1){
229
            av_log(NULL, AV_LOG_ERROR, "Error generating huffman table\n");
M
cleanup  
Michael Niedermayer 已提交
230 231 232
            return -1;
        }
        bits >>= 1;
M
huffyuv  
Michael Niedermayer 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
    }
    return 0;
}

static void generate_len_table(uint8_t *dst, uint64_t *stats, int size){
    uint64_t counts[2*size];
    int up[2*size];
    int offset, i, next;
    
    for(offset=1; ; offset<<=1){
        for(i=0; i<size; i++){
            counts[i]= stats[i] + offset - 1;
        }
        
        for(next=size; next<size*2; next++){
            uint64_t min1, min2;
            int min1_i, min2_i;
            
            min1=min2= INT64_MAX;
            min1_i= min2_i=-1;
            
            for(i=0; i<next; i++){
                if(min2 > counts[i]){
                    if(min1 > counts[i]){
                        min2= min1;
                        min2_i= min1_i;
                        min1= counts[i];
                        min1_i= i;
                    }else{
                        min2= counts[i];
                        min2_i= i;
                    }
                }
            }
            
            if(min2==INT64_MAX) break;
            
            counts[next]= min1 + min2;
            counts[min1_i]=
M
0.1l  
Michael Niedermayer 已提交
272
            counts[min2_i]= INT64_MAX;
M
huffyuv  
Michael Niedermayer 已提交
273 274 275 276 277 278 279 280 281 282 283 284
            up[min1_i]=
            up[min2_i]= next;
            up[next]= -1;
        }
        
        for(i=0; i<size; i++){
            int len;
            int index=i;
            
            for(len=0; up[index] != -1; len++)
                index= up[index];
                
M
10l  
Michael Niedermayer 已提交
285
            if(len >= 32) break;
M
huffyuv  
Michael Niedermayer 已提交
286 287 288 289 290 291 292 293 294 295 296
            
            dst[i]= len;
        }
        if(i==size) break;
    }
}

static int read_huffman_tables(HYuvContext *s, uint8_t *src, int length){
    GetBitContext gb;
    int i;
    
297
    init_get_bits(&gb, src, length*8);
M
huffyuv  
Michael Niedermayer 已提交
298 299 300 301 302 303 304 305 306 307 308 309
    
    for(i=0; i<3; i++){
        read_len_table(s->len[i], &gb);
        
        if(generate_bits_table(s->bits[i], s->len[i])<0){
            return -1;
        }
#if 0
for(j=0; j<256; j++){
printf("%6X, %2d,  %3d\n", s->bits[i][j], s->len[i][j], j);
}
#endif
L
Loren Merritt 已提交
310
        free_vlc(&s->vlc[i]);
311
        init_vlc(&s->vlc[i], VLC_BITS, 256, s->len[i], 1, 1, s->bits[i], 4, 4, 0);
M
huffyuv  
Michael Niedermayer 已提交
312 313
    }
    
L
Loren Merritt 已提交
314
    return (get_bits_count(&gb)+7)/8;
M
huffyuv  
Michael Niedermayer 已提交
315 316 317
}

static int read_old_huffman_tables(HYuvContext *s){
318
#if 1
M
huffyuv  
Michael Niedermayer 已提交
319 320 321
    GetBitContext gb;
    int i;

322
    init_get_bits(&gb, classic_shift_luma, sizeof(classic_shift_luma)*8);
M
huffyuv  
Michael Niedermayer 已提交
323
    read_len_table(s->len[0], &gb);
324
    init_get_bits(&gb, classic_shift_chroma, sizeof(classic_shift_chroma)*8);
M
huffyuv  
Michael Niedermayer 已提交
325 326 327 328 329 330 331 332 333 334 335 336
    read_len_table(s->len[1], &gb);
    
    for(i=0; i<256; i++) s->bits[0][i] = classic_add_luma  [i];
    for(i=0; i<256; i++) s->bits[1][i] = classic_add_chroma[i];

    if(s->bitstream_bpp >= 24){
        memcpy(s->bits[1], s->bits[0], 256*sizeof(uint32_t));
        memcpy(s->len[1] , s->len [0], 256*sizeof(uint8_t));
    }
    memcpy(s->bits[2], s->bits[1], 256*sizeof(uint32_t));
    memcpy(s->len[2] , s->len [1], 256*sizeof(uint8_t));
    
L
Loren Merritt 已提交
337 338
    for(i=0; i<3; i++){
        free_vlc(&s->vlc[i]);
339
        init_vlc(&s->vlc[i], VLC_BITS, 256, s->len[i], 1, 1, s->bits[i], 4, 4, 0);
L
Loren Merritt 已提交
340
    }
M
huffyuv  
Michael Niedermayer 已提交
341 342 343 344 345 346 347 348 349 350 351
    
    return 0;
#else
    fprintf(stderr, "v1 huffyuv is not supported \n");
    return -1;
#endif
}

static int decode_init(AVCodecContext *avctx)
{
    HYuvContext *s = avctx->priv_data;
M
cleanup  
Michael Niedermayer 已提交
352
    int width, height;
M
huffyuv  
Michael Niedermayer 已提交
353 354 355 356

    s->avctx= avctx;
    s->flags= avctx->flags;
        
M
10l  
Michael Niedermayer 已提交
357
    dsputil_init(&s->dsp, avctx);
L
Loren Merritt 已提交
358
    memset(s->vlc, 0, 3*sizeof(VLC));
M
huffyuv  
Michael Niedermayer 已提交
359 360 361
    
    width= s->width= avctx->width;
    height= s->height= avctx->height;
M
Michael Niedermayer 已提交
362
    avctx->coded_frame= &s->picture;
M
cleanup  
Michael Niedermayer 已提交
363

M
huffyuv  
Michael Niedermayer 已提交
364 365 366 367 368
s->bgr32=1;
    assert(width && height);
//if(avctx->extradata)
//  printf("extradata:%X, extradata_size:%d\n", *(uint32_t*)avctx->extradata, avctx->extradata_size);
    if(avctx->extradata_size){
369
        if((avctx->bits_per_sample&7) && avctx->bits_per_sample != 12)
M
huffyuv  
Michael Niedermayer 已提交
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
            s->version=1; // do such files exist at all?
        else
            s->version=2;
    }else
        s->version=0;
    
    if(s->version==2){
        int method;

        method= ((uint8_t*)avctx->extradata)[0];
        s->decorrelate= method&64 ? 1 : 0;
        s->predictor= method&63;
        s->bitstream_bpp= ((uint8_t*)avctx->extradata)[1];
        if(s->bitstream_bpp==0) 
            s->bitstream_bpp= avctx->bits_per_sample&~7;
L
Loren Merritt 已提交
385
        s->context= ((uint8_t*)avctx->extradata)[2] & 0x40 ? 1 : 0;
M
huffyuv  
Michael Niedermayer 已提交
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
            
        if(read_huffman_tables(s, ((uint8_t*)avctx->extradata)+4, avctx->extradata_size) < 0)
            return -1;
    }else{
        switch(avctx->bits_per_sample&7){
        case 1:
            s->predictor= LEFT;
            s->decorrelate= 0;
            break;
        case 2:
            s->predictor= LEFT;
            s->decorrelate= 1;
            break;
        case 3:
            s->predictor= PLANE;
            s->decorrelate= avctx->bits_per_sample >= 24;
            break;
        case 4:
            s->predictor= MEDIAN;
            s->decorrelate= 0;
            break;
        default:
            s->predictor= LEFT; //OLD
            s->decorrelate= 0;
            break;
        }
        s->bitstream_bpp= avctx->bits_per_sample & ~7;
L
Loren Merritt 已提交
413
        s->context= 0;
M
huffyuv  
Michael Niedermayer 已提交
414 415 416 417 418
        
        if(read_old_huffman_tables(s) < 0)
            return -1;
    }
    
419 420 421 422
    if(((uint8_t*)avctx->extradata)[2] & 0x20)
	s->interlaced= ((uint8_t*)avctx->extradata)[2] & 0x10 ? 1 : 0;
    else
	s->interlaced= height > 288;
M
huffyuv  
Michael Niedermayer 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
    
    switch(s->bitstream_bpp){
    case 12:
        avctx->pix_fmt = PIX_FMT_YUV420P;
        break;
    case 16:
        if(s->yuy2){
            avctx->pix_fmt = PIX_FMT_YUV422;
        }else{
            avctx->pix_fmt = PIX_FMT_YUV422P;
        }
        break;
    case 24:
    case 32:
        if(s->bgr32){
438
            avctx->pix_fmt = PIX_FMT_RGBA32;
M
huffyuv  
Michael Niedermayer 已提交
439 440 441 442 443 444 445 446
        }else{
            avctx->pix_fmt = PIX_FMT_BGR24;
        }
        break;
    default:
        assert(0);
    }
    
447 448
//    av_log(NULL, AV_LOG_DEBUG, "pred:%d bpp:%d hbpp:%d il:%d\n", s->predictor, s->bitstream_bpp, avctx->bits_per_sample, s->interlaced);

M
huffyuv  
Michael Niedermayer 已提交
449 450 451
    return 0;
}

L
Loren Merritt 已提交
452
static int store_table(HYuvContext *s, uint8_t *len, uint8_t *buf){
M
huffyuv  
Michael Niedermayer 已提交
453
    int i;
L
Loren Merritt 已提交
454
    int index= 0;
M
huffyuv  
Michael Niedermayer 已提交
455 456 457

    for(i=0; i<256;){
        int val= len[i];
458
        int repeat=0;
M
huffyuv  
Michael Niedermayer 已提交
459
        
460 461
        for(; i<256 && len[i]==val && repeat<255; i++)
            repeat++;
M
huffyuv  
Michael Niedermayer 已提交
462
        
463
        assert(val < 32 && val >0 && repeat<256 && repeat>0);
M
huffyuv  
Michael Niedermayer 已提交
464
        if(repeat>7){
L
Loren Merritt 已提交
465 466
            buf[index++]= val;
            buf[index++]= repeat;
M
huffyuv  
Michael Niedermayer 已提交
467
        }else{
L
Loren Merritt 已提交
468
            buf[index++]= val | (repeat<<5);
M
huffyuv  
Michael Niedermayer 已提交
469 470 471
        }
    }
    
L
Loren Merritt 已提交
472
    return index;
M
huffyuv  
Michael Niedermayer 已提交
473 474 475 476 477 478 479 480 481 482
}

static int encode_init(AVCodecContext *avctx)
{
    HYuvContext *s = avctx->priv_data;
    int i, j, width, height;

    s->avctx= avctx;
    s->flags= avctx->flags;
        
M
10l  
Michael Niedermayer 已提交
483
    dsputil_init(&s->dsp, avctx);
M
huffyuv  
Michael Niedermayer 已提交
484 485 486 487 488 489
    
    width= s->width= avctx->width;
    height= s->height= avctx->height;
    
    assert(width && height);
    
M
10l  
Michael Niedermayer 已提交
490 491
    avctx->extradata= av_mallocz(1024*30);
    avctx->stats_out= av_mallocz(1024*30);
M
huffyuv  
Michael Niedermayer 已提交
492 493
    s->version=2;
    
M
Michael Niedermayer 已提交
494
    avctx->coded_frame= &s->picture;
M
cleanup  
Michael Niedermayer 已提交
495
    
M
huffyuv  
Michael Niedermayer 已提交
496
    switch(avctx->pix_fmt){
497 498 499
    case PIX_FMT_YUV420P:
        s->bitstream_bpp= 12;
        break;
M
huffyuv  
Michael Niedermayer 已提交
500 501 502 503
    case PIX_FMT_YUV422P:
        s->bitstream_bpp= 16;
        break;
    default:
504
        av_log(avctx, AV_LOG_ERROR, "format not supported\n");
M
huffyuv  
Michael Niedermayer 已提交
505 506 507 508 509
        return -1;
    }
    avctx->bits_per_sample= s->bitstream_bpp;
    s->decorrelate= s->bitstream_bpp >= 24;
    s->predictor= avctx->prediction_method;
510
    s->interlaced= avctx->flags&CODEC_FLAG_INTERLACED_ME ? 1 : 0;
L
Loren Merritt 已提交
511 512 513 514 515 516 517
    if(avctx->context_model==1){
        s->context= avctx->context_model;
        if(s->flags & (CODEC_FLAG_PASS1|CODEC_FLAG_PASS2)){
            av_log(avctx, AV_LOG_ERROR, "context=1 is not compatible with 2 pass huffyuv encoding\n");
            return -1;
        }
    }else s->context= 0;
M
huffyuv  
Michael Niedermayer 已提交
518
    
L
Loren Merritt 已提交
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
    if(avctx->codec->id==CODEC_ID_HUFFYUV){
        if(avctx->pix_fmt==PIX_FMT_YUV420P){
            av_log(avctx, AV_LOG_ERROR, "Error: YV12 is not supported by huffyuv; use vcodec=ffvhuff or format=422p\n");
            return -1;
        }
        if(avctx->context_model){
            av_log(avctx, AV_LOG_ERROR, "Error: per-frame huffman tables are not supported by huffyuv; use vcodec=ffvhuff\n");
            return -1;
        }
        if(s->interlaced != ( height > 288 ))
            av_log(avctx, AV_LOG_INFO, "using huffyuv 2.2.0 or newer interlacing flag\n");
    }else if(avctx->strict_std_compliance>=0){
        av_log(avctx, AV_LOG_ERROR, "This codec is under development; files encoded with it may not be decodeable with future versions!!! Set vstrict=-1 to use it anyway.\n");
        return -1;
    }
    
M
huffyuv  
Michael Niedermayer 已提交
535 536
    ((uint8_t*)avctx->extradata)[0]= s->predictor;
    ((uint8_t*)avctx->extradata)[1]= s->bitstream_bpp;
537
    ((uint8_t*)avctx->extradata)[2]= 0x20 | (s->interlaced ? 0x10 : 0);
L
Loren Merritt 已提交
538 539
    if(s->context)
        ((uint8_t*)avctx->extradata)[2]|= 0x40;
M
huffyuv  
Michael Niedermayer 已提交
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
    ((uint8_t*)avctx->extradata)[3]= 0;
    s->avctx->extradata_size= 4;
    
    if(avctx->stats_in){
        char *p= avctx->stats_in;
    
        for(i=0; i<3; i++)
            for(j=0; j<256; j++)
                s->stats[i][j]= 1;

        for(;;){
            for(i=0; i<3; i++){
                char *next;

                for(j=0; j<256; j++){
                    s->stats[i][j]+= strtol(p, &next, 0);
                    if(next==p) return -1;
                    p=next;
                }        
            }
            if(p[0]==0 || p[1]==0 || p[2]==0) break;
        }
    }else{
        for(i=0; i<3; i++)
            for(j=0; j<256; j++){
                int d= FFMIN(j, 256-j);
                
                s->stats[i][j]= 100000000/(d+1);
            }
    }
    
    for(i=0; i<3; i++){
        generate_len_table(s->len[i], s->stats[i], 256);

        if(generate_bits_table(s->bits[i], s->len[i])<0){
            return -1;
        }
        
L
Loren Merritt 已提交
578 579
        s->avctx->extradata_size+=
        store_table(s, s->len[i], &((uint8_t*)s->avctx->extradata)[s->avctx->extradata_size]);
M
huffyuv  
Michael Niedermayer 已提交
580 581
    }

L
Loren Merritt 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594
    if(s->context){
        for(i=0; i<3; i++){
            int pels = width*height / (i?40:10);
            for(j=0; j<256; j++){
                int d= FFMIN(j, 256-j);
                s->stats[i][j]= pels/(d+1);
            }
        }
    }else{
        for(i=0; i<3; i++)
            for(j=0; j<256; j++)
                s->stats[i][j]= 0;
    }
M
huffyuv  
Michael Niedermayer 已提交
595 596
    
//    printf("pred:%d bpp:%d hbpp:%d il:%d\n", s->predictor, s->bitstream_bpp, avctx->bits_per_sample, s->interlaced);
597

M
huffyuv  
Michael Niedermayer 已提交
598
    s->picture_number=0;
599

M
huffyuv  
Michael Niedermayer 已提交
600 601 602 603 604
    return 0;
}

static void decode_422_bitstream(HYuvContext *s, int count){
    int i;
605

M
huffyuv  
Michael Niedermayer 已提交
606 607 608 609 610 611 612 613 614 615
    count/=2;
    
    for(i=0; i<count; i++){
        s->temp[0][2*i  ]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); 
        s->temp[1][  i  ]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); 
        s->temp[0][2*i+1]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); 
        s->temp[2][  i  ]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); 
    }
}

616 617 618 619 620 621 622 623 624 625 626
static void decode_gray_bitstream(HYuvContext *s, int count){
    int i;
    
    count/=2;
    
    for(i=0; i<count; i++){
        s->temp[0][2*i  ]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); 
        s->temp[0][2*i+1]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3); 
    }
}

M
huffyuv  
Michael Niedermayer 已提交
627 628 629 630 631 632 633 634 635 636 637
static void encode_422_bitstream(HYuvContext *s, int count){
    int i;
    
    count/=2;
    if(s->flags&CODEC_FLAG_PASS1){
        for(i=0; i<count; i++){
            s->stats[0][ s->temp[0][2*i  ] ]++;
            s->stats[1][ s->temp[1][  i  ] ]++;
            s->stats[0][ s->temp[0][2*i+1] ]++;
            s->stats[2][ s->temp[2][  i  ] ]++;
        }
L
Loren Merritt 已提交
638 639 640 641 642 643 644 645 646 647 648
    }else if(s->context){
        for(i=0; i<count; i++){
            s->stats[0][ s->temp[0][2*i  ] ]++;
            put_bits(&s->pb, s->len[0][ s->temp[0][2*i  ] ], s->bits[0][ s->temp[0][2*i  ] ]);
            s->stats[1][ s->temp[1][  i  ] ]++;
            put_bits(&s->pb, s->len[1][ s->temp[1][  i  ] ], s->bits[1][ s->temp[1][  i  ] ]);
            s->stats[0][ s->temp[0][2*i+1] ]++;
            put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]);
            s->stats[2][ s->temp[2][  i  ] ]++;
            put_bits(&s->pb, s->len[2][ s->temp[2][  i  ] ], s->bits[2][ s->temp[2][  i  ] ]);
        }
M
huffyuv  
Michael Niedermayer 已提交
649 650 651 652 653 654 655 656 657 658
    }else{
        for(i=0; i<count; i++){
            put_bits(&s->pb, s->len[0][ s->temp[0][2*i  ] ], s->bits[0][ s->temp[0][2*i  ] ]);
            put_bits(&s->pb, s->len[1][ s->temp[1][  i  ] ], s->bits[1][ s->temp[1][  i  ] ]);
            put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]);
            put_bits(&s->pb, s->len[2][ s->temp[2][  i  ] ], s->bits[2][ s->temp[2][  i  ] ]);
        }
    }
}

659 660 661 662 663 664 665 666 667
static void encode_gray_bitstream(HYuvContext *s, int count){
    int i;
    
    count/=2;
    if(s->flags&CODEC_FLAG_PASS1){
        for(i=0; i<count; i++){
            s->stats[0][ s->temp[0][2*i  ] ]++;
            s->stats[0][ s->temp[0][2*i+1] ]++;
        }
L
Loren Merritt 已提交
668 669 670 671 672 673 674
    }else if(s->context){
        for(i=0; i<count; i++){
            s->stats[0][ s->temp[0][2*i  ] ]++;
            put_bits(&s->pb, s->len[0][ s->temp[0][2*i  ] ], s->bits[0][ s->temp[0][2*i  ] ]);
            s->stats[0][ s->temp[0][2*i+1] ]++;
            put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]);
        }
675 676 677 678 679 680 681 682
    }else{
        for(i=0; i<count; i++){
            put_bits(&s->pb, s->len[0][ s->temp[0][2*i  ] ], s->bits[0][ s->temp[0][2*i  ] ]);
            put_bits(&s->pb, s->len[0][ s->temp[0][2*i+1] ], s->bits[0][ s->temp[0][2*i+1] ]);
        }
    }
}

M
huffyuv  
Michael Niedermayer 已提交
683 684
static void decode_bgr_bitstream(HYuvContext *s, int count){
    int i;
685

M
huffyuv  
Michael Niedermayer 已提交
686 687 688
    if(s->decorrelate){
        if(s->bitstream_bpp==24){
            for(i=0; i<count; i++){
689 690 691
                s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); 
                s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3) + s->temp[0][4*i+G];
                s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3) + s->temp[0][4*i+G];
M
huffyuv  
Michael Niedermayer 已提交
692 693 694
            }
        }else{
            for(i=0; i<count; i++){
M
Michael Niedermayer 已提交
695 696 697
                s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); 
                s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3) + s->temp[0][4*i+G];
                s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3) + s->temp[0][4*i+G]; 
M
huffyuv  
Michael Niedermayer 已提交
698 699 700 701 702 703
                                   get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); //?!
            }
        }
    }else{
        if(s->bitstream_bpp==24){
            for(i=0; i<count; i++){
704 705 706
                s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3);
                s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); 
                s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); 
M
huffyuv  
Michael Niedermayer 已提交
707 708 709
            }
        }else{
            for(i=0; i<count; i++){
M
Michael Niedermayer 已提交
710 711 712
                s->temp[0][4*i+B]= get_vlc2(&s->gb, s->vlc[0].table, VLC_BITS, 3);
                s->temp[0][4*i+G]= get_vlc2(&s->gb, s->vlc[1].table, VLC_BITS, 3); 
                s->temp[0][4*i+R]= get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); 
M
huffyuv  
Michael Niedermayer 已提交
713 714 715 716 717 718
                                   get_vlc2(&s->gb, s->vlc[2].table, VLC_BITS, 3); //?!
            }
        }
    }
}

M
Michael Niedermayer 已提交
719 720
static void draw_slice(HYuvContext *s, int y){
    int h, cy;
M
Michael Niedermayer 已提交
721
    int offset[4];
M
Michael Niedermayer 已提交
722 723 724 725 726 727 728 729 730 731 732 733
    
    if(s->avctx->draw_horiz_band==NULL) 
        return;
        
    h= y - s->last_slice_end;
    y -= h;
    
    if(s->bitstream_bpp==12){
        cy= y>>1;
    }else{
        cy= y;
    }
M
Michael Niedermayer 已提交
734 735 736 737 738

    offset[0] = s->picture.linesize[0]*y;
    offset[1] = s->picture.linesize[1]*cy;
    offset[2] = s->picture.linesize[2]*cy;
    offset[3] = 0;
M
Michael Niedermayer 已提交
739 740
    emms_c();

741
    s->avctx->draw_horiz_band(s->avctx, &s->picture, offset, y, 3, h);
M
Michael Niedermayer 已提交
742 743 744 745
    
    s->last_slice_end= y + h;
}

M
huffyuv  
Michael Niedermayer 已提交
746 747 748 749 750
static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size){
    HYuvContext *s = avctx->priv_data;
    const int width= s->width;
    const int width2= s->width>>1;
    const int height= s->height;
M
dr1  
Michael Niedermayer 已提交
751
    int fake_ystride, fake_ustride, fake_vstride;
M
Michael Niedermayer 已提交
752
    AVFrame * const p= &s->picture;
L
Loren Merritt 已提交
753
    int table_size= 0;
M
huffyuv  
Michael Niedermayer 已提交
754

M
Michael Niedermayer 已提交
755
    AVFrame *picture = data;
M
huffyuv  
Michael Niedermayer 已提交
756 757 758 759 760

    /* no supplementary picture */
    if (buf_size == 0)
        return 0;

M
Michael Niedermayer 已提交
761
    s->dsp.bswap_buf((uint32_t*)s->bitstream_buffer, (uint32_t*)buf, buf_size/4);
M
huffyuv  
Michael Niedermayer 已提交
762
    
M
Michael Niedermayer 已提交
763 764 765
    if(p->data[0])
        avctx->release_buffer(avctx, p);

M
cleanup  
Michael Niedermayer 已提交
766 767
    p->reference= 0;
    if(avctx->get_buffer(avctx, p) < 0){
768
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
M
cleanup  
Michael Niedermayer 已提交
769
        return -1;
M
dr1  
Michael Niedermayer 已提交
770
    }
L
Loren Merritt 已提交
771 772 773 774 775 776 777 778
    
    if(s->context){
        table_size = read_huffman_tables(s, s->bitstream_buffer, buf_size);
        if(table_size < 0)
            return -1;
    }

    init_get_bits(&s->gb, s->bitstream_buffer+table_size, (buf_size-table_size)*8);
M
cleanup  
Michael Niedermayer 已提交
779 780 781 782

    fake_ystride= s->interlaced ? p->linesize[0]*2  : p->linesize[0];
    fake_ustride= s->interlaced ? p->linesize[1]*2  : p->linesize[1];
    fake_vstride= s->interlaced ? p->linesize[2]*2  : p->linesize[2];
M
Michael Niedermayer 已提交
783 784
    
    s->last_slice_end= 0;
M
dr1  
Michael Niedermayer 已提交
785
        
M
huffyuv  
Michael Niedermayer 已提交
786
    if(s->bitstream_bpp<24){
787
        int y, cy;
M
huffyuv  
Michael Niedermayer 已提交
788 789 790 791
        int lefty, leftu, leftv;
        int lefttopy, lefttopu, lefttopv;
        
        if(s->yuy2){
M
cleanup  
Michael Niedermayer 已提交
792 793 794 795
            p->data[0][3]= get_bits(&s->gb, 8);
            p->data[0][2]= get_bits(&s->gb, 8);
            p->data[0][1]= get_bits(&s->gb, 8);
            p->data[0][0]= get_bits(&s->gb, 8);
M
huffyuv  
Michael Niedermayer 已提交
796
            
797
            av_log(avctx, AV_LOG_ERROR, "YUY2 output isnt implemenetd yet\n");
M
huffyuv  
Michael Niedermayer 已提交
798 799 800
            return -1;
        }else{
        
M
cleanup  
Michael Niedermayer 已提交
801 802 803 804
            leftv= p->data[2][0]= get_bits(&s->gb, 8);
            lefty= p->data[0][1]= get_bits(&s->gb, 8);
            leftu= p->data[1][0]= get_bits(&s->gb, 8);
                   p->data[0][0]= get_bits(&s->gb, 8);
M
huffyuv  
Michael Niedermayer 已提交
805 806 807 808 809
        
            switch(s->predictor){
            case LEFT:
            case PLANE:
                decode_422_bitstream(s, width-2);
M
cleanup  
Michael Niedermayer 已提交
810
                lefty= add_left_prediction(p->data[0] + 2, s->temp[0], width-2, lefty);
M
huffyuv  
Michael Niedermayer 已提交
811
                if(!(s->flags&CODEC_FLAG_GRAY)){
M
cleanup  
Michael Niedermayer 已提交
812 813
                    leftu= add_left_prediction(p->data[1] + 1, s->temp[1], width2-1, leftu);
                    leftv= add_left_prediction(p->data[2] + 1, s->temp[2], width2-1, leftv);
M
huffyuv  
Michael Niedermayer 已提交
814 815
                }

816
                for(cy=y=1; y<s->height; y++,cy++){
M
huffyuv  
Michael Niedermayer 已提交
817
                    uint8_t *ydst, *udst, *vdst;
818 819 820 821
                    
                    if(s->bitstream_bpp==12){
                        decode_gray_bitstream(s, width);
                    
M
cleanup  
Michael Niedermayer 已提交
822
                        ydst= p->data[0] + p->linesize[0]*y;
823 824 825 826 827 828 829 830 831

                        lefty= add_left_prediction(ydst, s->temp[0], width, lefty);
                        if(s->predictor == PLANE){
                            if(y>s->interlaced)
                                s->dsp.add_bytes(ydst, ydst - fake_ystride, width);
                        }
                        y++;
                        if(y>=s->height) break;
                    }
M
huffyuv  
Michael Niedermayer 已提交
832
                    
M
Michael Niedermayer 已提交
833 834
                    draw_slice(s, y);
                    
M
cleanup  
Michael Niedermayer 已提交
835 836 837
                    ydst= p->data[0] + p->linesize[0]*y;
                    udst= p->data[1] + p->linesize[1]*cy;
                    vdst= p->data[2] + p->linesize[2]*cy;
838 839
                    
                    decode_422_bitstream(s, width);
M
huffyuv  
Michael Niedermayer 已提交
840 841 842 843 844 845
                    lefty= add_left_prediction(ydst, s->temp[0], width, lefty);
                    if(!(s->flags&CODEC_FLAG_GRAY)){
                        leftu= add_left_prediction(udst, s->temp[1], width2, leftu);
                        leftv= add_left_prediction(vdst, s->temp[2], width2, leftv);
                    }
                    if(s->predictor == PLANE){
846
                        if(cy>s->interlaced){
M
huffyuv  
Michael Niedermayer 已提交
847 848 849 850 851 852 853 854
                            s->dsp.add_bytes(ydst, ydst - fake_ystride, width);
                            if(!(s->flags&CODEC_FLAG_GRAY)){
                                s->dsp.add_bytes(udst, udst - fake_ustride, width2);
                                s->dsp.add_bytes(vdst, vdst - fake_vstride, width2);
                            }
                        }
                    }
                }
M
Michael Niedermayer 已提交
855 856
                draw_slice(s, height);
                
M
huffyuv  
Michael Niedermayer 已提交
857 858 859 860
                break;
            case MEDIAN:
                /* first line except first 2 pixels is left predicted */
                decode_422_bitstream(s, width-2);
M
cleanup  
Michael Niedermayer 已提交
861
                lefty= add_left_prediction(p->data[0] + 2, s->temp[0], width-2, lefty);
M
huffyuv  
Michael Niedermayer 已提交
862
                if(!(s->flags&CODEC_FLAG_GRAY)){
M
cleanup  
Michael Niedermayer 已提交
863 864
                    leftu= add_left_prediction(p->data[1] + 1, s->temp[1], width2-1, leftu);
                    leftv= add_left_prediction(p->data[2] + 1, s->temp[2], width2-1, leftv);
M
huffyuv  
Michael Niedermayer 已提交
865 866
                }
                
867
                cy=y=1;
M
huffyuv  
Michael Niedermayer 已提交
868 869 870 871
                
                /* second line is left predicted for interlaced case */
                if(s->interlaced){
                    decode_422_bitstream(s, width);
M
cleanup  
Michael Niedermayer 已提交
872
                    lefty= add_left_prediction(p->data[0] + p->linesize[0], s->temp[0], width, lefty);
M
huffyuv  
Michael Niedermayer 已提交
873
                    if(!(s->flags&CODEC_FLAG_GRAY)){
M
cleanup  
Michael Niedermayer 已提交
874 875
                        leftu= add_left_prediction(p->data[1] + p->linesize[2], s->temp[1], width2, leftu);
                        leftv= add_left_prediction(p->data[2] + p->linesize[1], s->temp[2], width2, leftv);
M
huffyuv  
Michael Niedermayer 已提交
876
                    }
877
                    y++; cy++;
M
huffyuv  
Michael Niedermayer 已提交
878 879 880 881
                }

                /* next 4 pixels are left predicted too */
                decode_422_bitstream(s, 4);
M
cleanup  
Michael Niedermayer 已提交
882
                lefty= add_left_prediction(p->data[0] + fake_ystride, s->temp[0], 4, lefty);
M
huffyuv  
Michael Niedermayer 已提交
883
                if(!(s->flags&CODEC_FLAG_GRAY)){
M
cleanup  
Michael Niedermayer 已提交
884 885
                    leftu= add_left_prediction(p->data[1] + fake_ustride, s->temp[1], 2, leftu);
                    leftv= add_left_prediction(p->data[2] + fake_vstride, s->temp[2], 2, leftv);
M
huffyuv  
Michael Niedermayer 已提交
886 887 888
                }

                /* next line except the first 4 pixels is median predicted */
M
cleanup  
Michael Niedermayer 已提交
889
                lefttopy= p->data[0][3];
M
huffyuv  
Michael Niedermayer 已提交
890
                decode_422_bitstream(s, width-4);
M
cleanup  
Michael Niedermayer 已提交
891
                add_median_prediction(p->data[0] + fake_ystride+4, p->data[0]+4, s->temp[0], width-4, &lefty, &lefttopy);
M
huffyuv  
Michael Niedermayer 已提交
892
                if(!(s->flags&CODEC_FLAG_GRAY)){
M
cleanup  
Michael Niedermayer 已提交
893 894 895 896
                    lefttopu= p->data[1][1];
                    lefttopv= p->data[2][1];
                    add_median_prediction(p->data[1] + fake_ustride+2, p->data[1]+2, s->temp[1], width2-2, &leftu, &lefttopu);
                    add_median_prediction(p->data[2] + fake_vstride+2, p->data[2]+2, s->temp[2], width2-2, &leftv, &lefttopv);
M
huffyuv  
Michael Niedermayer 已提交
897
                }
898 899 900
                y++; cy++;
                
                for(; y<height; y++,cy++){
M
huffyuv  
Michael Niedermayer 已提交
901
                    uint8_t *ydst, *udst, *vdst;
902 903 904 905

                    if(s->bitstream_bpp==12){
                        while(2*cy > y){
                            decode_gray_bitstream(s, width);
M
cleanup  
Michael Niedermayer 已提交
906
                            ydst= p->data[0] + p->linesize[0]*y;
907 908 909 910 911
                            add_median_prediction(ydst, ydst - fake_ystride, s->temp[0], width, &lefty, &lefttopy);
                            y++;
                        }
                        if(y>=height) break;
                    }
M
Michael Niedermayer 已提交
912
                    draw_slice(s, y);
913

M
huffyuv  
Michael Niedermayer 已提交
914
                    decode_422_bitstream(s, width);
915

M
cleanup  
Michael Niedermayer 已提交
916 917 918
                    ydst= p->data[0] + p->linesize[0]*y;
                    udst= p->data[1] + p->linesize[1]*cy;
                    vdst= p->data[2] + p->linesize[2]*cy;
M
huffyuv  
Michael Niedermayer 已提交
919 920 921 922 923 924 925

                    add_median_prediction(ydst, ydst - fake_ystride, s->temp[0], width, &lefty, &lefttopy);
                    if(!(s->flags&CODEC_FLAG_GRAY)){
                        add_median_prediction(udst, udst - fake_ustride, s->temp[1], width2, &leftu, &lefttopu);
                        add_median_prediction(vdst, vdst - fake_vstride, s->temp[2], width2, &leftv, &lefttopv);
                    }
                }
M
Michael Niedermayer 已提交
926 927

                draw_slice(s, height);
M
huffyuv  
Michael Niedermayer 已提交
928 929 930 931 932 933
                break;
            }
        }
    }else{
        int y;
        int leftr, leftg, leftb;
M
cleanup  
Michael Niedermayer 已提交
934
        const int last_line= (height-1)*p->linesize[0];
M
huffyuv  
Michael Niedermayer 已提交
935 936
        
        if(s->bitstream_bpp==32){
937 938 939 940
            skip_bits(&s->gb, 8);
            leftr= p->data[0][last_line+R]= get_bits(&s->gb, 8);
            leftg= p->data[0][last_line+G]= get_bits(&s->gb, 8);
            leftb= p->data[0][last_line+B]= get_bits(&s->gb, 8);
M
huffyuv  
Michael Niedermayer 已提交
941
        }else{
942 943 944
            leftr= p->data[0][last_line+R]= get_bits(&s->gb, 8);
            leftg= p->data[0][last_line+G]= get_bits(&s->gb, 8);
            leftb= p->data[0][last_line+B]= get_bits(&s->gb, 8);
M
huffyuv  
Michael Niedermayer 已提交
945 946 947 948 949 950 951 952
            skip_bits(&s->gb, 8);
        }
        
        if(s->bgr32){
            switch(s->predictor){
            case LEFT:
            case PLANE:
                decode_bgr_bitstream(s, width-1);
M
cleanup  
Michael Niedermayer 已提交
953
                add_left_prediction_bgr32(p->data[0] + last_line+4, s->temp[0], width-1, &leftr, &leftg, &leftb);
M
huffyuv  
Michael Niedermayer 已提交
954 955 956 957

                for(y=s->height-2; y>=0; y--){ //yes its stored upside down
                    decode_bgr_bitstream(s, width);
                    
M
cleanup  
Michael Niedermayer 已提交
958
                    add_left_prediction_bgr32(p->data[0] + p->linesize[0]*y, s->temp[0], width, &leftr, &leftg, &leftb);
M
huffyuv  
Michael Niedermayer 已提交
959
                    if(s->predictor == PLANE){
960
                        if((y&s->interlaced)==0 && y<s->height-1-s->interlaced){
M
cleanup  
Michael Niedermayer 已提交
961 962
                            s->dsp.add_bytes(p->data[0] + p->linesize[0]*y, 
                                             p->data[0] + p->linesize[0]*y + fake_ystride, fake_ystride);
M
huffyuv  
Michael Niedermayer 已提交
963 964 965
                        }
                    }
                }
M
Michael Niedermayer 已提交
966
                draw_slice(s, height); // just 1 large slice as this isnt possible in reverse order
M
huffyuv  
Michael Niedermayer 已提交
967 968
                break;
            default:
969
                av_log(avctx, AV_LOG_ERROR, "prediction type not supported!\n");
M
huffyuv  
Michael Niedermayer 已提交
970 971 972
            }
        }else{

973
            av_log(avctx, AV_LOG_ERROR, "BGR24 output isnt implemenetd yet\n");
M
huffyuv  
Michael Niedermayer 已提交
974 975 976 977 978
            return -1;
        }
    }
    emms_c();
    
M
cleanup  
Michael Niedermayer 已提交
979
    *picture= *p;
M
Michael Niedermayer 已提交
980
    *data_size = sizeof(AVFrame);
M
huffyuv  
Michael Niedermayer 已提交
981
    
982
    return (get_bits_count(&s->gb)+31)/32*4;
M
huffyuv  
Michael Niedermayer 已提交
983 984 985 986 987 988 989 990 991 992
}

static int decode_end(AVCodecContext *avctx)
{
    HYuvContext *s = avctx->priv_data;
    int i;
    
    for(i=0; i<3; i++){
        free_vlc(&s->vlc[i]);
    }
M
cleanup  
Michael Niedermayer 已提交
993

M
huffyuv  
Michael Niedermayer 已提交
994 995 996 997 998
    return 0;
}

static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
    HYuvContext *s = avctx->priv_data;
M
Michael Niedermayer 已提交
999
    AVFrame *pict = data;
M
huffyuv  
Michael Niedermayer 已提交
1000 1001 1002 1003 1004 1005
    const int width= s->width;
    const int width2= s->width>>1;
    const int height= s->height;
    const int fake_ystride= s->interlaced ? pict->linesize[0]*2  : pict->linesize[0];
    const int fake_ustride= s->interlaced ? pict->linesize[1]*2  : pict->linesize[1];
    const int fake_vstride= s->interlaced ? pict->linesize[2]*2  : pict->linesize[2];
M
Michael Niedermayer 已提交
1006
    AVFrame * const p= &s->picture;
L
Loren Merritt 已提交
1007
    int i, j, size=0;
M
huffyuv  
Michael Niedermayer 已提交
1008

M
cleanup  
Michael Niedermayer 已提交
1009
    *p = *pict;
M
10l  
Michael Niedermayer 已提交
1010 1011
    p->pict_type= FF_I_TYPE;
    p->key_frame= 1;
M
huffyuv  
Michael Niedermayer 已提交
1012
    
L
Loren Merritt 已提交
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
    if(s->context){
        for(i=0; i<3; i++){
            generate_len_table(s->len[i], s->stats[i], 256);
            if(generate_bits_table(s->bits[i], s->len[i])<0)
                return -1;
            size+= store_table(s, s->len[i], &buf[size]);
        }

        for(i=0; i<3; i++)
            for(j=0; j<256; j++)
                s->stats[i][j] >>= 1;
    }

    init_put_bits(&s->pb, buf+size, buf_size-size);

1028 1029
    if(avctx->pix_fmt == PIX_FMT_YUV422P || avctx->pix_fmt == PIX_FMT_YUV420P){
        int lefty, leftu, leftv, y, cy;
M
huffyuv  
Michael Niedermayer 已提交
1030

M
cleanup  
Michael Niedermayer 已提交
1031 1032 1033 1034
        put_bits(&s->pb, 8, leftv= p->data[2][0]);
        put_bits(&s->pb, 8, lefty= p->data[0][1]);
        put_bits(&s->pb, 8, leftu= p->data[1][0]);
        put_bits(&s->pb, 8,        p->data[0][0]);
M
huffyuv  
Michael Niedermayer 已提交
1035
        
M
cleanup  
Michael Niedermayer 已提交
1036 1037 1038
        lefty= sub_left_prediction(s, s->temp[0], p->data[0]+2, width-2 , lefty);
        leftu= sub_left_prediction(s, s->temp[1], p->data[1]+1, width2-1, leftu);
        leftv= sub_left_prediction(s, s->temp[2], p->data[2]+1, width2-1, leftv);
M
huffyuv  
Michael Niedermayer 已提交
1039 1040 1041 1042 1043
        
        encode_422_bitstream(s, width-2);
        
        if(s->predictor==MEDIAN){
            int lefttopy, lefttopu, lefttopv;
1044
            cy=y=1;
M
huffyuv  
Michael Niedermayer 已提交
1045
            if(s->interlaced){
M
cleanup  
Michael Niedermayer 已提交
1046 1047 1048
                lefty= sub_left_prediction(s, s->temp[0], p->data[0]+p->linesize[0], width , lefty);
                leftu= sub_left_prediction(s, s->temp[1], p->data[1]+p->linesize[1], width2, leftu);
                leftv= sub_left_prediction(s, s->temp[2], p->data[2]+p->linesize[2], width2, leftv);
M
huffyuv  
Michael Niedermayer 已提交
1049 1050
        
                encode_422_bitstream(s, width);
1051
                y++; cy++;
M
huffyuv  
Michael Niedermayer 已提交
1052 1053
            }
            
M
cleanup  
Michael Niedermayer 已提交
1054
            lefty= sub_left_prediction(s, s->temp[0], p->data[0]+fake_ystride, 4, lefty);
1055 1056
            leftu= sub_left_prediction(s, s->temp[1], p->data[1]+fake_ustride, 2, leftu);
            leftv= sub_left_prediction(s, s->temp[2], p->data[2]+fake_vstride, 2, leftv);
M
huffyuv  
Michael Niedermayer 已提交
1057 1058
        
            encode_422_bitstream(s, 4);
1059

M
cleanup  
Michael Niedermayer 已提交
1060 1061 1062
            lefttopy= p->data[0][3];
            lefttopu= p->data[1][1];
            lefttopv= p->data[2][1];
1063 1064 1065
            s->dsp.sub_hfyu_median_prediction(s->temp[0], p->data[0]+4, p->data[0] + fake_ystride+4, width-4 , &lefty, &lefttopy);
            s->dsp.sub_hfyu_median_prediction(s->temp[1], p->data[1]+2, p->data[1] + fake_ustride+2, width2-2, &leftu, &lefttopu);
            s->dsp.sub_hfyu_median_prediction(s->temp[2], p->data[2]+2, p->data[2] + fake_vstride+2, width2-2, &leftv, &lefttopv);
M
huffyuv  
Michael Niedermayer 已提交
1066
            encode_422_bitstream(s, width-4);
1067
            y++; cy++;
M
huffyuv  
Michael Niedermayer 已提交
1068

1069
            for(; y<height; y++,cy++){
M
huffyuv  
Michael Niedermayer 已提交
1070 1071
                uint8_t *ydst, *udst, *vdst;
                    
1072 1073
                if(s->bitstream_bpp==12){
                    while(2*cy > y){
M
cleanup  
Michael Niedermayer 已提交
1074
                        ydst= p->data[0] + p->linesize[0]*y;
1075
                        s->dsp.sub_hfyu_median_prediction(s->temp[0], ydst - fake_ystride, ydst, width , &lefty, &lefttopy);
1076 1077 1078 1079 1080
                        encode_gray_bitstream(s, width);
                        y++;
                    }
                    if(y>=height) break;
                }
M
cleanup  
Michael Niedermayer 已提交
1081 1082 1083
                ydst= p->data[0] + p->linesize[0]*y;
                udst= p->data[1] + p->linesize[1]*cy;
                vdst= p->data[2] + p->linesize[2]*cy;
M
huffyuv  
Michael Niedermayer 已提交
1084

1085 1086 1087
                s->dsp.sub_hfyu_median_prediction(s->temp[0], ydst - fake_ystride, ydst, width , &lefty, &lefttopy);
                s->dsp.sub_hfyu_median_prediction(s->temp[1], udst - fake_ustride, udst, width2, &leftu, &lefttopu);
                s->dsp.sub_hfyu_median_prediction(s->temp[2], vdst - fake_vstride, vdst, width2, &leftv, &lefttopv);
M
huffyuv  
Michael Niedermayer 已提交
1088 1089 1090 1091

                encode_422_bitstream(s, width);
            }
        }else{
1092
            for(cy=y=1; y<height; y++,cy++){
M
huffyuv  
Michael Niedermayer 已提交
1093
                uint8_t *ydst, *udst, *vdst;
1094 1095 1096
                
                /* encode a luma only line & y++ */
                if(s->bitstream_bpp==12){
M
cleanup  
Michael Niedermayer 已提交
1097
                    ydst= p->data[0] + p->linesize[0]*y;
1098 1099

                    if(s->predictor == PLANE && s->interlaced < y){
M
Michael Niedermayer 已提交
1100
                        s->dsp.diff_bytes(s->temp[1], ydst, ydst - fake_ystride, width);
1101

M
Michael Niedermayer 已提交
1102
                        lefty= sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty);
1103
                    }else{
M
Michael Niedermayer 已提交
1104
                        lefty= sub_left_prediction(s, s->temp[0], ydst, width , lefty);
1105 1106 1107 1108 1109 1110
                    }
                    encode_gray_bitstream(s, width);
                    y++;
                    if(y>=height) break;
                }
                
M
cleanup  
Michael Niedermayer 已提交
1111 1112 1113
                ydst= p->data[0] + p->linesize[0]*y;
                udst= p->data[1] + p->linesize[1]*cy;
                vdst= p->data[2] + p->linesize[2]*cy;
M
huffyuv  
Michael Niedermayer 已提交
1114

1115
                if(s->predictor == PLANE && s->interlaced < cy){
M
Michael Niedermayer 已提交
1116 1117
                    s->dsp.diff_bytes(s->temp[1], ydst, ydst - fake_ystride, width);
                    s->dsp.diff_bytes(s->temp[2], udst, udst - fake_ustride, width2);
M
10l  
Michael Niedermayer 已提交
1118
                    s->dsp.diff_bytes(s->temp[2] + 1250, vdst, vdst - fake_vstride, width2);
M
huffyuv  
Michael Niedermayer 已提交
1119

M
Michael Niedermayer 已提交
1120 1121
                    lefty= sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty);
                    leftu= sub_left_prediction(s, s->temp[1], s->temp[2], width2, leftu);
M
10l  
Michael Niedermayer 已提交
1122
                    leftv= sub_left_prediction(s, s->temp[2], s->temp[2] + 1250, width2, leftv);
M
huffyuv  
Michael Niedermayer 已提交
1123
                }else{
M
Michael Niedermayer 已提交
1124 1125 1126
                    lefty= sub_left_prediction(s, s->temp[0], ydst, width , lefty);
                    leftu= sub_left_prediction(s, s->temp[1], udst, width2, leftu);
                    leftv= sub_left_prediction(s, s->temp[2], vdst, width2, leftv);
M
huffyuv  
Michael Niedermayer 已提交
1127 1128 1129 1130 1131 1132
                }

                encode_422_bitstream(s, width);
            }
        }        
    }else{
1133
        av_log(avctx, AV_LOG_ERROR, "Format not supported!\n");
M
huffyuv  
Michael Niedermayer 已提交
1134 1135 1136
    }
    emms_c();
    
L
Loren Merritt 已提交
1137 1138
    size+= (put_bits_count(&s->pb)+31)/8;
    size/= 4;
M
huffyuv  
Michael Niedermayer 已提交
1139 1140 1141 1142 1143 1144
    
    if((s->flags&CODEC_FLAG_PASS1) && (s->picture_number&31)==0){
        int j;
        char *p= avctx->stats_out;
        for(i=0; i<3; i++){
            for(j=0; j<256; j++){
F
Falk Hüffner 已提交
1145
                sprintf(p, "%llu ", s->stats[i][j]);
M
huffyuv  
Michael Niedermayer 已提交
1146 1147 1148 1149 1150 1151 1152
                p+= strlen(p);
                s->stats[i][j]= 0;
            }
            sprintf(p, "\n");
            p++;
        }
    }else{
1153
        flush_put_bits(&s->pb);
M
Michael Niedermayer 已提交
1154
        s->dsp.bswap_buf((uint32_t*)buf, (uint32_t*)buf, size);
1155
        avctx->stats_out[0] = '\0';
M
huffyuv  
Michael Niedermayer 已提交
1156 1157 1158
    }
    
    s->picture_number++;
M
cleanup  
Michael Niedermayer 已提交
1159

M
huffyuv  
Michael Niedermayer 已提交
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
    return size*4;
}

static int encode_end(AVCodecContext *avctx)
{
//    HYuvContext *s = avctx->priv_data;

    av_freep(&avctx->extradata);
    av_freep(&avctx->stats_out);
    
    return 0;
}

Z
Zdenek Kabelac 已提交
1173 1174 1175 1176 1177 1178
static const AVOption huffyuv_options[] =
{
    AVOPTION_CODEC_INT("prediction_method", "prediction_method", prediction_method, 0, 2, 0),
    AVOPTION_END()
};

L
Loren Merritt 已提交
1179 1180 1181 1182 1183 1184 1185 1186
static const AVOption ffvhuff_options[] =
{
    AVOPTION_CODEC_INT("prediction_method", "prediction_method", prediction_method, 0, 2, 0),
    AVOPTION_CODEC_INT("context_model", "context_model", context_model, 0, 2, 0),
    AVOPTION_END()
};


M
huffyuv  
Michael Niedermayer 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195
AVCodec huffyuv_decoder = {
    "huffyuv",
    CODEC_TYPE_VIDEO,
    CODEC_ID_HUFFYUV,
    sizeof(HYuvContext),
    decode_init,
    NULL,
    decode_end,
    decode_frame,
M
Michael Niedermayer 已提交
1196
    CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND,
M
huffyuv  
Michael Niedermayer 已提交
1197 1198 1199
    NULL
};

L
Loren Merritt 已提交
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
AVCodec ffvhuff_decoder = {
    "ffvhuff",
    CODEC_TYPE_VIDEO,
    CODEC_ID_FFVHUFF,
    sizeof(HYuvContext),
    decode_init,
    NULL,
    decode_end,
    decode_frame,
    CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND,
    NULL
};

1213 1214
#ifdef CONFIG_ENCODERS

M
huffyuv  
Michael Niedermayer 已提交
1215 1216 1217 1218 1219 1220 1221 1222
AVCodec huffyuv_encoder = {
    "huffyuv",
    CODEC_TYPE_VIDEO,
    CODEC_ID_HUFFYUV,
    sizeof(HYuvContext),
    encode_init,
    encode_frame,
    encode_end,
Z
Zdenek Kabelac 已提交
1223
    .options = huffyuv_options,
M
huffyuv  
Michael Niedermayer 已提交
1224
};
1225

L
Loren Merritt 已提交
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
AVCodec ffvhuff_encoder = {
    "ffvhuff",
    CODEC_TYPE_VIDEO,
    CODEC_ID_FFVHUFF,
    sizeof(HYuvContext),
    encode_init,
    encode_frame,
    encode_end,
    .options = ffvhuff_options,
};

Z
Zdenek Kabelac 已提交
1237
#endif //CONFIG_ENCODERS