Merge "utilize preload in ARMv6 MC/LPF/Copy routines"
[profile/ivi/libvpx.git] / vp8 / encoder / onyx_int.h
1 /*
2  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11
12 #ifndef __INC_VP8_INT_H
13 #define __INC_VP8_INT_H
14
15 #include <stdio.h>
16 #include "vpx_ports/config.h"
17 #include "vp8/common/onyx.h"
18 #include "treewriter.h"
19 #include "tokenize.h"
20 #include "vp8/common/onyxc_int.h"
21 #include "variance.h"
22 #include "dct.h"
23 #include "encodemb.h"
24 #include "quantize.h"
25 #include "vp8/common/entropy.h"
26 #include "vp8/common/threading.h"
27 #include "vpx_ports/mem.h"
28 #include "vpx/internal/vpx_codec_internal.h"
29 #include "mcomp.h"
30 #include "temporal_filter.h"
31 #include "vp8/common/findnearmv.h"
32 #include "lookahead.h"
33
34 //#define SPEEDSTATS 1
35 #define MIN_GF_INTERVAL             4
36 #define DEFAULT_GF_INTERVAL         7
37
38 #define KEY_FRAME_CONTEXT 5
39
40 #define MAX_LAG_BUFFERS (CONFIG_REALTIME_ONLY? 1 : 25)
41
42 #define AF_THRESH   25
43 #define AF_THRESH2  100
44 #define ARF_DECAY_THRESH 12
45 #define MAX_MODES 20
46
47 #define MIN_THRESHMULT  32
48 #define MAX_THRESHMULT  512
49
50 #define GF_ZEROMV_ZBIN_BOOST 12
51 #define LF_ZEROMV_ZBIN_BOOST 6
52 #define MV_ZBIN_BOOST        4
53 #define ZBIN_OQ_MAX 192
54
55 #if !(CONFIG_REALTIME_ONLY)
56 #define VP8_TEMPORAL_ALT_REF 1
57 #endif
58
59 typedef struct
60 {
61     int kf_indicated;
62     unsigned int frames_since_key;
63     unsigned int frames_since_golden;
64     int filter_level;
65     int frames_till_gf_update_due;
66     int recent_ref_frame_usage[MAX_REF_FRAMES];
67
68     MV_CONTEXT mvc[2];
69     int mvcosts[2][MVvals+1];
70
71 #ifdef MODE_STATS
72     // Stats
73     int y_modes[5];
74     int uv_modes[4];
75     int b_modes[10];
76     int inter_y_modes[10];
77     int inter_uv_modes[4];
78     int inter_b_modes[10];
79 #endif
80
81     vp8_prob ymode_prob[4], uv_mode_prob[3];   /* interframe intra mode probs */
82     vp8_prob kf_ymode_prob[4], kf_uv_mode_prob[3];   /* keyframe "" */
83
84     int ymode_count[5], uv_mode_count[4];  /* intra MB type cts this frame */
85
86     int count_mb_ref_frame_usage[MAX_REF_FRAMES];
87
88     int this_frame_percent_intra;
89     int last_frame_percent_intra;
90
91
92 } CODING_CONTEXT;
93
94 typedef struct
95 {
96     double frame;
97     double intra_error;
98     double coded_error;
99     double ssim_weighted_pred_err;
100     double pcnt_inter;
101     double pcnt_motion;
102     double pcnt_second_ref;
103     double pcnt_neutral;
104     double MVr;
105     double mvr_abs;
106     double MVc;
107     double mvc_abs;
108     double MVrv;
109     double MVcv;
110     double mv_in_out_count;
111     double duration;
112     double count;
113 }
114 FIRSTPASS_STATS;
115
116 typedef struct
117 {
118     int frames_so_far;
119     double frame_intra_error;
120     double frame_coded_error;
121     double frame_pcnt_inter;
122     double frame_pcnt_motion;
123     double frame_mvr;
124     double frame_mvr_abs;
125     double frame_mvc;
126     double frame_mvc_abs;
127
128 } ONEPASS_FRAMESTATS;
129
130
131 typedef enum
132 {
133     THR_ZEROMV         = 0,
134     THR_DC             = 1,
135
136     THR_NEARESTMV      = 2,
137     THR_NEARMV         = 3,
138
139     THR_ZEROG          = 4,
140     THR_NEARESTG       = 5,
141
142     THR_ZEROA          = 6,
143     THR_NEARESTA       = 7,
144
145     THR_NEARG          = 8,
146     THR_NEARA          = 9,
147
148     THR_V_PRED         = 10,
149     THR_H_PRED         = 11,
150     THR_TM             = 12,
151
152     THR_NEWMV          = 13,
153     THR_NEWG           = 14,
154     THR_NEWA           = 15,
155
156     THR_SPLITMV        = 16,
157     THR_SPLITG         = 17,
158     THR_SPLITA         = 18,
159
160     THR_B_PRED         = 19,
161 }
162 THR_MODES;
163
164 typedef enum
165 {
166     DIAMOND = 0,
167     NSTEP = 1,
168     HEX = 2
169 } SEARCH_METHODS;
170
171 typedef struct
172 {
173     int RD;
174     SEARCH_METHODS search_method;
175     int improved_quant;
176     int improved_dct;
177     int auto_filter;
178     int recode_loop;
179     int iterative_sub_pixel;
180     int half_pixel_search;
181     int quarter_pixel_search;
182     int thresh_mult[MAX_MODES];
183     int full_freq[2];
184     int min_fs_radius;
185     int max_fs_radius;
186     int max_step_search_steps;
187     int first_step;
188     int optimize_coefficients;
189
190     int use_fastquant_for_pick;
191     int no_skip_block4x4_search;
192     int improved_mv_pred;
193
194 } SPEED_FEATURES;
195
196 typedef struct
197 {
198     MACROBLOCK  mb;
199     int segment_counts[MAX_MB_SEGMENTS];
200     int totalrate;
201 } MB_ROW_COMP;
202
203 typedef struct
204 {
205     TOKENEXTRA *start;
206     TOKENEXTRA *stop;
207 } TOKENLIST;
208
209 typedef struct
210 {
211     int ithread;
212     void *ptr1;
213     void *ptr2;
214 } ENCODETHREAD_DATA;
215 typedef struct
216 {
217     int ithread;
218     void *ptr1;
219 } LPFTHREAD_DATA;
220
221
222 typedef struct VP8_ENCODER_RTCD
223 {
224     VP8_COMMON_RTCD            *common;
225     vp8_variance_rtcd_vtable_t  variance;
226     vp8_fdct_rtcd_vtable_t      fdct;
227     vp8_encodemb_rtcd_vtable_t  encodemb;
228     vp8_quantize_rtcd_vtable_t  quantize;
229     vp8_search_rtcd_vtable_t    search;
230     vp8_temporal_rtcd_vtable_t  temporal;
231 } VP8_ENCODER_RTCD;
232
233 enum
234 {
235     BLOCK_16X8,
236     BLOCK_8X16,
237     BLOCK_8X8,
238     BLOCK_4X4,
239     BLOCK_16X16,
240     BLOCK_MAX_SEGMENTS
241 };
242
243 typedef struct VP8_COMP
244 {
245
246     DECLARE_ALIGNED(16, short, Y1quant[QINDEX_RANGE][16]);
247     DECLARE_ALIGNED(16, unsigned char, Y1quant_shift[QINDEX_RANGE][16]);
248     DECLARE_ALIGNED(16, short, Y1zbin[QINDEX_RANGE][16]);
249     DECLARE_ALIGNED(16, short, Y1round[QINDEX_RANGE][16]);
250
251     DECLARE_ALIGNED(16, short, Y2quant[QINDEX_RANGE][16]);
252     DECLARE_ALIGNED(16, unsigned char, Y2quant_shift[QINDEX_RANGE][16]);
253     DECLARE_ALIGNED(16, short, Y2zbin[QINDEX_RANGE][16]);
254     DECLARE_ALIGNED(16, short, Y2round[QINDEX_RANGE][16]);
255
256     DECLARE_ALIGNED(16, short, UVquant[QINDEX_RANGE][16]);
257     DECLARE_ALIGNED(16, unsigned char, UVquant_shift[QINDEX_RANGE][16]);
258     DECLARE_ALIGNED(16, short, UVzbin[QINDEX_RANGE][16]);
259     DECLARE_ALIGNED(16, short, UVround[QINDEX_RANGE][16]);
260
261     DECLARE_ALIGNED(16, short, zrun_zbin_boost_y1[QINDEX_RANGE][16]);
262     DECLARE_ALIGNED(16, short, zrun_zbin_boost_y2[QINDEX_RANGE][16]);
263     DECLARE_ALIGNED(16, short, zrun_zbin_boost_uv[QINDEX_RANGE][16]);
264     DECLARE_ALIGNED(16, short, Y1quant_fast[QINDEX_RANGE][16]);
265     DECLARE_ALIGNED(16, short, Y2quant_fast[QINDEX_RANGE][16]);
266     DECLARE_ALIGNED(16, short, UVquant_fast[QINDEX_RANGE][16]);
267
268
269     MACROBLOCK mb;
270     VP8_COMMON common;
271     vp8_writer bc, bc2;
272     // bool_writer *bc2;
273
274     VP8_CONFIG oxcf;
275
276     struct lookahead_ctx    *lookahead;
277     struct lookahead_entry  *source;
278     struct lookahead_entry  *alt_ref_source;
279
280     YV12_BUFFER_CONFIG *Source;
281     YV12_BUFFER_CONFIG *un_scaled_source;
282     YV12_BUFFER_CONFIG scaled_source;
283
284     int source_alt_ref_pending; // frame in src_buffers has been identified to be encoded as an alt ref
285     int source_alt_ref_active;  // an alt ref frame has been encoded and is usable
286
287     int is_src_frame_alt_ref;   // source of frame to encode is an exact copy of an alt ref frame
288
289     int gold_is_last; // golden frame same as last frame ( short circuit gold searches)
290     int alt_is_last;  // Alt reference frame same as last ( short circuit altref search)
291     int gold_is_alt;  // don't do both alt and gold search ( just do gold).
292
293     //int refresh_alt_ref_frame;
294     YV12_BUFFER_CONFIG last_frame_uf;
295
296     TOKENEXTRA *tok;
297     unsigned int tok_count;
298
299
300     unsigned int frames_since_key;
301     unsigned int key_frame_frequency;
302     unsigned int this_key_frame_forced;
303     unsigned int next_key_frame_forced;
304
305     // Ambient reconstruction err target for force key frames
306     int ambient_err;
307
308     unsigned int mode_check_freq[MAX_MODES];
309     unsigned int mode_test_hit_counts[MAX_MODES];
310     unsigned int mode_chosen_counts[MAX_MODES];
311     unsigned int mbs_tested_so_far;
312
313     int rd_thresh_mult[MAX_MODES];
314     int rd_baseline_thresh[MAX_MODES];
315     int rd_threshes[MAX_MODES];
316
317     int RDMULT;
318     int RDDIV ;
319
320     CODING_CONTEXT coding_context;
321
322     // Rate targetting variables
323     long long prediction_error;
324     long long last_prediction_error;
325     long long intra_error;
326     long long last_intra_error;
327
328     int this_frame_target;
329     int projected_frame_size;
330     int last_q[2];                   // Separate values for Intra/Inter
331
332     double rate_correction_factor;
333     double key_frame_rate_correction_factor;
334     double gf_rate_correction_factor;
335
336     int frames_till_gf_update_due;      // Count down till next GF
337     int current_gf_interval;          // GF interval chosen when we coded the last GF
338
339     int gf_overspend_bits;            // Total bits overspent becasue of GF boost (cumulative)
340
341     int non_gf_bitrate_adjustment;     // Used in the few frames following a GF to recover the extra bits spent in that GF
342
343     int kf_overspend_bits;            // Extra bits spent on key frames that need to be recovered on inter frames
344     int kf_bitrate_adjustment;        // Current number of bit s to try and recover on each inter frame.
345     int max_gf_interval;
346     int baseline_gf_interval;
347     int active_arnr_frames;           // <= cpi->oxcf.arnr_max_frames
348
349     INT64 key_frame_count;
350     int prior_key_frame_distance[KEY_FRAME_CONTEXT];
351     int per_frame_bandwidth;          // Current section per frame bandwidth target
352     int av_per_frame_bandwidth;        // Average frame size target for clip
353     int min_frame_bandwidth;          // Minimum allocation that should be used for any frame
354     int inter_frame_target;
355     double output_frame_rate;
356     long long last_time_stamp_seen;
357     long long last_end_time_stamp_seen;
358     long long first_time_stamp_ever;
359
360     int ni_av_qi;
361     int ni_tot_qi;
362     int ni_frames;
363     int avg_frame_qindex;
364
365     int zbin_over_quant;
366     int zbin_mode_boost;
367     int zbin_mode_boost_enabled;
368
369     INT64 total_byte_count;
370
371     int buffered_mode;
372
373     int buffer_level;
374     int bits_off_target;
375
376     int rolling_target_bits;
377     int rolling_actual_bits;
378
379     int long_rolling_target_bits;
380     int long_rolling_actual_bits;
381
382     long long total_actual_bits;
383     int total_target_vs_actual;        // debug stats
384
385     int worst_quality;
386     int active_worst_quality;
387     int best_quality;
388     int active_best_quality;
389
390     int cq_target_quality;
391
392     int drop_frames_allowed;          // Are we permitted to drop frames?
393     int drop_frame;                  // Drop this frame?
394     int drop_count;                  // How many frames have we dropped?
395     int max_drop_count;               // How many frames should we drop?
396     int max_consec_dropped_frames;     // Limit number of consecutive frames that can be dropped.
397
398
399     int ymode_count [VP8_YMODES];        /* intra MB type cts this frame */
400     int uv_mode_count[VP8_UV_MODES];       /* intra MB type cts this frame */
401
402     unsigned int MVcount [2] [MVvals];  /* (row,col) MV cts this frame */
403
404     unsigned int coef_counts [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [vp8_coef_tokens];  /* for this frame */
405     //DECLARE_ALIGNED(16, int, coef_counts_backup [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [vp8_coef_tokens]);   //not used any more
406     //save vp8_tree_probs_from_distribution result for each frame to avoid repeat calculation
407     vp8_prob frame_coef_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [vp8_coef_tokens-1];
408     unsigned int frame_branch_ct [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [vp8_coef_tokens-1][2];
409
410     int gfu_boost;
411     int kf_boost;
412     int last_boost;
413
414     int target_bandwidth;
415     struct vpx_codec_pkt_list  *output_pkt_list;
416
417 #if 0
418     // Experimental code for lagged and one pass
419     ONEPASS_FRAMESTATS one_pass_frame_stats[MAX_LAG_BUFFERS];
420     int one_pass_frame_index;
421 #endif
422
423     int decimation_factor;
424     int decimation_count;
425
426     // for real time encoding
427     int avg_encode_time;              //microsecond
428     int avg_pick_mode_time;            //microsecond
429     int Speed;
430     unsigned int cpu_freq;           //Mhz
431     int compressor_speed;
432
433     int interquantizer;
434     int auto_gold;
435     int auto_adjust_gold_quantizer;
436     int goldfreq;
437     int auto_worst_q;
438     int cpu_used;
439     int horiz_scale;
440     int vert_scale;
441     int pass;
442
443
444     int prob_intra_coded;
445     int prob_last_coded;
446     int prob_gf_coded;
447     int prob_skip_false;
448     int last_skip_false_probs[3];
449     int last_skip_probs_q[3];
450     int recent_ref_frame_usage[MAX_REF_FRAMES];
451
452     int count_mb_ref_frame_usage[MAX_REF_FRAMES];
453     int this_frame_percent_intra;
454     int last_frame_percent_intra;
455
456     int ref_frame_flags;
457
458     SPEED_FEATURES sf;
459     int error_bins[1024];
460
461     // Data used for real time conferencing mode to help determine if it would be good to update the gf
462     int inter_zz_count;
463     int gf_bad_count;
464     int gf_update_recommended;
465     int skip_true_count;
466     int skip_false_count;
467
468     unsigned char *segmentation_map;
469     signed char segment_feature_data[MB_LVL_MAX][MAX_MB_SEGMENTS];            // Segment data (can be deltas or absolute values)
470     int  segment_encode_breakout[MAX_MB_SEGMENTS];                    // segment threashold for encode breakout
471
472     unsigned char *active_map;
473     unsigned int active_map_enabled;
474     // Video conferencing cyclic refresh mode flags etc
475     // This is a mode designed to clean up the background over time in live encoding scenarious. It uses segmentation
476     int cyclic_refresh_mode_enabled;
477     int cyclic_refresh_mode_max_mbs_perframe;
478     int cyclic_refresh_mode_index;
479     int cyclic_refresh_q;
480     signed char *cyclic_refresh_map;
481
482 #if CONFIG_MULTITHREAD
483     // multithread data
484     int * mt_current_mb_col;
485     int mt_sync_range;
486     int b_multi_threaded;
487     int encoding_thread_count;
488
489     pthread_t *h_encoding_thread;
490     pthread_t h_filter_thread;
491
492     MB_ROW_COMP *mb_row_ei;
493     ENCODETHREAD_DATA *en_thread_data;
494     LPFTHREAD_DATA lpf_thread_data;
495
496     //events
497     sem_t *h_event_start_encoding;
498     sem_t h_event_end_encoding;
499     sem_t h_event_start_lpf;
500     sem_t h_event_end_lpf;
501 #endif
502
503     TOKENLIST *tplist;
504     unsigned int partition_sz[MAX_PARTITIONS];
505     // end of multithread data
506
507
508     fractional_mv_step_fp *find_fractional_mv_step;
509     vp8_full_search_fn_t full_search_sad;
510     vp8_refining_search_fn_t refining_search_sad;
511     vp8_diamond_search_fn_t diamond_search_sad;
512     vp8_variance_fn_ptr_t fn_ptr[BLOCK_MAX_SEGMENTS];
513     unsigned int time_receive_data;
514     unsigned int time_compress_data;
515     unsigned int time_pick_lpf;
516     unsigned int time_encode_mb_row;
517
518     int base_skip_false_prob[128];
519
520     struct twopass_rc
521     {
522         unsigned int section_intra_rating;
523         double section_max_qfactor;
524         unsigned int next_iiratio;
525         unsigned int this_iiratio;
526         FIRSTPASS_STATS *total_stats;
527         FIRSTPASS_STATS *this_frame_stats;
528         FIRSTPASS_STATS *stats_in, *stats_in_end;
529         int first_pass_done;
530         long long bits_left;
531         long long clip_bits_total;
532         double avg_iiratio;
533         double modified_error_total;
534         double modified_error_used;
535         double modified_error_left;
536         double total_error_left;
537         double total_intra_error_left;
538         double total_coded_error_left;
539         double start_tot_err_left;
540         double kf_intra_err_min;
541         double gf_intra_err_min;
542         int frames_to_key;
543         int maxq_max_limit;
544         int maxq_min_limit;
545         int gf_decay_rate;
546         int static_scene_max_gf_interval;
547         int kf_bits;
548         int gf_group_error_left;           // Remaining error from uncoded frames in a gf group. Two pass use only
549
550         // Projected total bits available for a key frame group of frames
551         long long kf_group_bits;
552
553         // Error score of frames still to be coded in kf group
554         long long kf_group_error_left;
555
556         int gf_group_bits;                // Projected Bits available for a group of frames including 1 GF or ARF
557         int gf_bits;                     // Bits for the golden frame or ARF - 2 pass only
558         int mid_gf_extra_bits;             // A few extra bits for the frame half way between two gfs.
559         double est_max_qcorrection_factor;
560     } twopass;
561
562 #if CONFIG_RUNTIME_CPU_DETECT
563     VP8_ENCODER_RTCD            rtcd;
564 #endif
565 #if VP8_TEMPORAL_ALT_REF
566     YV12_BUFFER_CONFIG alt_ref_buffer;
567     YV12_BUFFER_CONFIG *frames[MAX_LAG_BUFFERS];
568     int fixed_divide[512];
569 #endif
570
571 #if CONFIG_INTERNAL_STATS
572     int    count;
573     double total_y;
574     double total_u;
575     double total_v;
576     double total ;
577     double total_sq_error;
578     double totalp_y;
579     double totalp_u;
580     double totalp_v;
581     double totalp;
582     double total_sq_error2;
583     int    bytes;
584     double summed_quality;
585     double summed_weights;
586     unsigned int tot_recode_hits;
587
588
589     double total_ssimg_y;
590     double total_ssimg_u;
591     double total_ssimg_v;
592     double total_ssimg_all;
593
594     int b_calculate_ssimg;
595 #endif
596     int b_calculate_psnr;
597
598     // Per MB activity measurement
599     unsigned int activity_avg;
600     unsigned int * mb_activity_map;
601     int * mb_norm_activity_map;
602
603     // Record of which MBs still refer to last golden frame either
604     // directly or through 0,0
605     unsigned char *gf_active_flags;
606     int gf_active_count;
607
608     int output_partition;
609
610     //Store last frame's MV info for next frame MV prediction
611     int_mv *lfmv;
612     int *lf_ref_frame_sign_bias;
613     int *lf_ref_frame;
614
615 #if CONFIG_REALTIME_ONLY
616     int force_next_frame_intra; /* force next frame to intra when kf_auto says so */
617 #endif
618 } VP8_COMP;
619
620 void control_data_rate(VP8_COMP *cpi);
621
622 void vp8_encode_frame(VP8_COMP *cpi);
623
624 void vp8_pack_bitstream(VP8_COMP *cpi, unsigned char *dest, unsigned long *size);
625
626 void vp8_activity_masking(VP8_COMP *cpi, MACROBLOCK *x);
627
628 int rd_cost_intra_mb(MACROBLOCKD *x);
629
630 void vp8_tokenize_mb(VP8_COMP *, MACROBLOCKD *, TOKENEXTRA **);
631
632 void vp8_set_speed_features(VP8_COMP *cpi);
633
634 #if CONFIG_DEBUG
635 #define CHECK_MEM_ERROR(lval,expr) do {\
636         lval = (expr); \
637         if(!lval) \
638             vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,\
639                                "Failed to allocate "#lval" at %s:%d", \
640                                __FILE__,__LINE__);\
641     } while(0)
642 #else
643 #define CHECK_MEM_ERROR(lval,expr) do {\
644         lval = (expr); \
645         if(!lval) \
646             vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,\
647                                "Failed to allocate "#lval);\
648     } while(0)
649 #endif
650 #endif