Merge "configure: add --extra-cxxflags option"
[platform/upstream/libvpx.git] / vp10 / encoder / encoder.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 #ifndef VP10_ENCODER_ENCODER_H_
12 #define VP10_ENCODER_ENCODER_H_
13
14 #include <stdio.h>
15
16 #include "./vpx_config.h"
17 #include "vpx/vp8cx.h"
18
19 #include "vp10/common/alloccommon.h"
20 #include "vp10/common/ppflags.h"
21 #include "vp10/common/entropymode.h"
22 #include "vp10/common/thread_common.h"
23 #include "vp10/common/onyxc_int.h"
24
25 #include "vp10/encoder/aq_cyclicrefresh.h"
26 #include "vp10/encoder/context_tree.h"
27 #include "vp10/encoder/encodemb.h"
28 #include "vp10/encoder/firstpass.h"
29 #include "vp10/encoder/lookahead.h"
30 #include "vp10/encoder/mbgraph.h"
31 #include "vp10/encoder/mcomp.h"
32 #include "vp10/encoder/quantize.h"
33 #include "vp10/encoder/ratectrl.h"
34 #include "vp10/encoder/rd.h"
35 #include "vp10/encoder/speed_features.h"
36 #include "vp10/encoder/tokenize.h"
37
38 #if CONFIG_VP9_TEMPORAL_DENOISING
39 #include "vp10/encoder/denoiser.h"
40 #endif
41
42 #if CONFIG_INTERNAL_STATS
43 #include "vpx_dsp/ssim.h"
44 #endif
45 #include "vpx_dsp/variance.h"
46 #include "vpx/internal/vpx_codec_internal.h"
47 #include "vpx_util/vpx_thread.h"
48
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52
53 typedef struct {
54   int nmvjointcost[MV_JOINTS];
55   int nmvcosts[2][MV_VALS];
56   int nmvcosts_hp[2][MV_VALS];
57
58   vpx_prob segment_pred_probs[PREDICTION_PROBS];
59
60   unsigned char *last_frame_seg_map_copy;
61
62   // 0 = Intra, Last, GF, ARF
63   signed char last_ref_lf_deltas[MAX_REF_FRAMES];
64   // 0 = ZERO_MV, MV
65   signed char last_mode_lf_deltas[MAX_MODE_LF_DELTAS];
66
67   FRAME_CONTEXT fc;
68 } CODING_CONTEXT;
69
70
71 typedef enum {
72   // encode_breakout is disabled.
73   ENCODE_BREAKOUT_DISABLED = 0,
74   // encode_breakout is enabled.
75   ENCODE_BREAKOUT_ENABLED = 1,
76   // encode_breakout is enabled with small max_thresh limit.
77   ENCODE_BREAKOUT_LIMITED = 2
78 } ENCODE_BREAKOUT_TYPE;
79
80 typedef enum {
81   NORMAL      = 0,
82   FOURFIVE    = 1,
83   THREEFIVE   = 2,
84   ONETWO      = 3
85 } VPX_SCALING;
86
87 typedef enum {
88   // Good Quality Fast Encoding. The encoder balances quality with the amount of
89   // time it takes to encode the output. Speed setting controls how fast.
90   GOOD,
91
92   // The encoder places priority on the quality of the output over encoding
93   // speed. The output is compressed at the highest possible quality. This
94   // option takes the longest amount of time to encode. Speed setting ignored.
95   BEST,
96
97   // Realtime/Live Encoding. This mode is optimized for realtime encoding (for
98   // example, capturing a television signal or feed from a live camera). Speed
99   // setting controls how fast.
100   REALTIME
101 } MODE;
102
103 typedef enum {
104   FRAMEFLAGS_KEY    = 1 << 0,
105   FRAMEFLAGS_GOLDEN = 1 << 1,
106   FRAMEFLAGS_ALTREF = 1 << 2,
107 } FRAMETYPE_FLAGS;
108
109 typedef enum {
110   NO_AQ = 0,
111   VARIANCE_AQ = 1,
112   COMPLEXITY_AQ = 2,
113   CYCLIC_REFRESH_AQ = 3,
114   AQ_MODE_COUNT  // This should always be the last member of the enum
115 } AQ_MODE;
116
117 typedef enum {
118   RESIZE_NONE = 0,    // No frame resizing allowed.
119   RESIZE_FIXED = 1,   // All frames are coded at the specified dimension.
120   RESIZE_DYNAMIC = 2  // Coded size of each frame is determined by the codec.
121 } RESIZE_TYPE;
122
123 typedef struct VP10EncoderConfig {
124   BITSTREAM_PROFILE profile;
125   vpx_bit_depth_t bit_depth;     // Codec bit-depth.
126   int width;  // width of data passed to the compressor
127   int height;  // height of data passed to the compressor
128   unsigned int input_bit_depth;  // Input bit depth.
129   double init_framerate;  // set to passed in framerate
130   int64_t target_bandwidth;  // bandwidth to be used in kilobits per second
131
132   int noise_sensitivity;  // pre processing blur: recommendation 0
133   int sharpness;  // sharpening output: recommendation 0:
134   int speed;
135   // maximum allowed bitrate for any intra frame in % of bitrate target.
136   unsigned int rc_max_intra_bitrate_pct;
137   // maximum allowed bitrate for any inter frame in % of bitrate target.
138   unsigned int rc_max_inter_bitrate_pct;
139   // percent of rate boost for golden frame in CBR mode.
140   unsigned int gf_cbr_boost_pct;
141
142   MODE mode;
143   int pass;
144
145   // Key Framing Operations
146   int auto_key;  // autodetect cut scenes and set the keyframes
147   int key_freq;  // maximum distance to key frame.
148
149   int lag_in_frames;  // how many frames lag before we start encoding
150
151   // ----------------------------------------------------------------
152   // DATARATE CONTROL OPTIONS
153
154   // vbr, cbr, constrained quality or constant quality
155   enum vpx_rc_mode rc_mode;
156
157   // buffer targeting aggressiveness
158   int under_shoot_pct;
159   int over_shoot_pct;
160
161   // buffering parameters
162   int64_t starting_buffer_level_ms;
163   int64_t optimal_buffer_level_ms;
164   int64_t maximum_buffer_size_ms;
165
166   // Frame drop threshold.
167   int drop_frames_water_mark;
168
169   // controlling quality
170   int fixed_q;
171   int worst_allowed_q;
172   int best_allowed_q;
173   int cq_level;
174   AQ_MODE aq_mode;  // Adaptive Quantization mode
175
176   // Internal frame size scaling.
177   RESIZE_TYPE resize_mode;
178   int scaled_frame_width;
179   int scaled_frame_height;
180
181   // Enable feature to reduce the frame quantization every x frames.
182   int frame_periodic_boost;
183
184   // two pass datarate control
185   int two_pass_vbrbias;        // two pass datarate control tweaks
186   int two_pass_vbrmin_section;
187   int two_pass_vbrmax_section;
188   // END DATARATE CONTROL OPTIONS
189   // ----------------------------------------------------------------
190
191   int enable_auto_arf;
192
193   int encode_breakout;  // early breakout : for video conf recommend 800
194
195   /* Bitfield defining the error resiliency features to enable.
196    * Can provide decodable frames after losses in previous
197    * frames and decodable partitions after losses in the same frame.
198    */
199   unsigned int error_resilient_mode;
200
201   /* Bitfield defining the parallel decoding mode where the
202    * decoding in successive frames may be conducted in parallel
203    * just by decoding the frame headers.
204    */
205   unsigned int frame_parallel_decoding_mode;
206
207   int arnr_max_frames;
208   int arnr_strength;
209
210   int min_gf_interval;
211   int max_gf_interval;
212
213   int tile_columns;
214   int tile_rows;
215
216   int max_threads;
217
218   vpx_fixed_buf_t two_pass_stats_in;
219   struct vpx_codec_pkt_list *output_pkt_list;
220
221 #if CONFIG_FP_MB_STATS
222   vpx_fixed_buf_t firstpass_mb_stats_in;
223 #endif
224
225   vp8e_tuning tuning;
226   vp9e_tune_content content;
227 #if CONFIG_VP9_HIGHBITDEPTH
228   int use_highbitdepth;
229 #endif
230   vpx_color_space_t color_space;
231   int color_range;
232 } VP10EncoderConfig;
233
234 static INLINE int is_lossless_requested(const VP10EncoderConfig *cfg) {
235   return cfg->best_allowed_q == 0 && cfg->worst_allowed_q == 0;
236 }
237
238 // TODO(jingning) All spatially adaptive variables should go to TileDataEnc.
239 typedef struct TileDataEnc {
240   TileInfo tile_info;
241   int thresh_freq_fact[BLOCK_SIZES][MAX_MODES];
242   int mode_map[BLOCK_SIZES][MAX_MODES];
243 } TileDataEnc;
244
245 typedef struct RD_COUNTS {
246   vp10_coeff_count coef_counts[TX_SIZES][PLANE_TYPES];
247   int64_t comp_pred_diff[REFERENCE_MODES];
248   int64_t filter_diff[SWITCHABLE_FILTER_CONTEXTS];
249 } RD_COUNTS;
250
251 typedef struct ThreadData {
252   MACROBLOCK mb;
253   RD_COUNTS rd_counts;
254   FRAME_COUNTS *counts;
255
256   PICK_MODE_CONTEXT *leaf_tree;
257   PC_TREE *pc_tree;
258   PC_TREE *pc_root;
259 } ThreadData;
260
261 struct EncWorkerData;
262
263 typedef struct ActiveMap {
264   int enabled;
265   int update;
266   unsigned char *map;
267 } ActiveMap;
268
269 typedef enum {
270   Y,
271   U,
272   V,
273   ALL
274 } STAT_TYPE;
275
276 typedef struct IMAGE_STAT {
277   double stat[ALL+1];
278   double worst;
279 } ImageStat;
280
281 typedef struct VP10_COMP {
282   QUANTS quants;
283   ThreadData td;
284   MB_MODE_INFO_EXT *mbmi_ext_base;
285   DECLARE_ALIGNED(16, int16_t, y_dequant[QINDEX_RANGE][8]);
286   DECLARE_ALIGNED(16, int16_t, uv_dequant[QINDEX_RANGE][8]);
287   VP10_COMMON common;
288   VP10EncoderConfig oxcf;
289   struct lookahead_ctx    *lookahead;
290   struct lookahead_entry  *alt_ref_source;
291
292   YV12_BUFFER_CONFIG *Source;
293   YV12_BUFFER_CONFIG *Last_Source;  // NULL for first frame and alt_ref frames
294   YV12_BUFFER_CONFIG *un_scaled_source;
295   YV12_BUFFER_CONFIG scaled_source;
296   YV12_BUFFER_CONFIG *unscaled_last_source;
297   YV12_BUFFER_CONFIG scaled_last_source;
298
299   TileDataEnc *tile_data;
300   int allocated_tiles;  // Keep track of memory allocated for tiles.
301
302   // For a still frame, this flag is set to 1 to skip partition search.
303   int partition_search_skippable_frame;
304
305   int scaled_ref_idx[MAX_REF_FRAMES];
306   int lst_fb_idx;
307   int gld_fb_idx;
308   int alt_fb_idx;
309
310   int refresh_last_frame;
311   int refresh_golden_frame;
312   int refresh_alt_ref_frame;
313
314   int ext_refresh_frame_flags_pending;
315   int ext_refresh_last_frame;
316   int ext_refresh_golden_frame;
317   int ext_refresh_alt_ref_frame;
318
319   int ext_refresh_frame_context_pending;
320   int ext_refresh_frame_context;
321
322   YV12_BUFFER_CONFIG last_frame_uf;
323
324   TOKENEXTRA *tile_tok[4][1 << 6];
325   unsigned int tok_count[4][1 << 6];
326
327   // Ambient reconstruction err target for force key frames
328   int64_t ambient_err;
329
330   RD_OPT rd;
331
332   CODING_CONTEXT coding_context;
333
334   int *nmvcosts[2];
335   int *nmvcosts_hp[2];
336   int *nmvsadcosts[2];
337   int *nmvsadcosts_hp[2];
338
339   int64_t last_time_stamp_seen;
340   int64_t last_end_time_stamp_seen;
341   int64_t first_time_stamp_ever;
342
343   RATE_CONTROL rc;
344   double framerate;
345
346   int interp_filter_selected[MAX_REF_FRAMES][SWITCHABLE];
347
348   struct vpx_codec_pkt_list  *output_pkt_list;
349
350   MBGRAPH_FRAME_STATS mbgraph_stats[MAX_LAG_BUFFERS];
351   int mbgraph_n_frames;             // number of frames filled in the above
352   int static_mb_pct;                // % forced skip mbs by segmentation
353   int ref_frame_flags;
354
355   SPEED_FEATURES sf;
356
357   unsigned int max_mv_magnitude;
358   int mv_step_param;
359
360   int allow_comp_inter_inter;
361
362   // Default value is 1. From first pass stats, encode_breakout may be disabled.
363   ENCODE_BREAKOUT_TYPE allow_encode_breakout;
364
365   // Get threshold from external input. A suggested threshold is 800 for HD
366   // clips, and 300 for < HD clips.
367   int encode_breakout;
368
369   unsigned char *segmentation_map;
370
371   // segment threashold for encode breakout
372   int  segment_encode_breakout[MAX_SEGMENTS];
373
374   CYCLIC_REFRESH *cyclic_refresh;
375   ActiveMap active_map;
376
377   fractional_mv_step_fp *find_fractional_mv_step;
378   vp10_full_search_fn_t full_search_sad;
379   vp10_diamond_search_fn_t diamond_search_sad;
380   vp9_variance_fn_ptr_t fn_ptr[BLOCK_SIZES];
381   uint64_t time_receive_data;
382   uint64_t time_compress_data;
383   uint64_t time_pick_lpf;
384   uint64_t time_encode_sb_row;
385
386 #if CONFIG_FP_MB_STATS
387   int use_fp_mb_stats;
388 #endif
389
390   TWO_PASS twopass;
391
392   YV12_BUFFER_CONFIG alt_ref_buffer;
393
394
395 #if CONFIG_INTERNAL_STATS
396   unsigned int mode_chosen_counts[MAX_MODES];
397
398   int    count;
399   uint64_t total_sq_error;
400   uint64_t total_samples;
401   ImageStat psnr;
402
403   uint64_t totalp_sq_error;
404   uint64_t totalp_samples;
405   ImageStat psnrp;
406
407   double total_blockiness;
408   double worst_blockiness;
409
410   int    bytes;
411   double summed_quality;
412   double summed_weights;
413   double summedp_quality;
414   double summedp_weights;
415   unsigned int tot_recode_hits;
416   double worst_ssim;
417
418   ImageStat ssimg;
419   ImageStat fastssim;
420   ImageStat psnrhvs;
421
422   int b_calculate_ssimg;
423   int b_calculate_blockiness;
424
425   int b_calculate_consistency;
426
427   double total_inconsistency;
428   double worst_consistency;
429   Ssimv *ssim_vars;
430   Metrics metrics;
431 #endif
432   int b_calculate_psnr;
433
434   int droppable;
435
436   int initial_width;
437   int initial_height;
438   int initial_mbs;  // Number of MBs in the full-size frame; to be used to
439                     // normalize the firstpass stats. This will differ from the
440                     // number of MBs in the current frame when the frame is
441                     // scaled.
442
443   // Store frame variance info in SOURCE_VAR_BASED_PARTITION search type.
444   diff *source_diff_var;
445   // The threshold used in SOURCE_VAR_BASED_PARTITION search type.
446   unsigned int source_var_thresh;
447   int frames_till_next_var_check;
448
449   int frame_flags;
450
451   search_site_config ss_cfg;
452
453   int mbmode_cost[INTRA_MODES];
454   unsigned int inter_mode_cost[INTER_MODE_CONTEXTS][INTER_MODES];
455   int intra_uv_mode_cost[FRAME_TYPES][INTRA_MODES];
456   int y_mode_costs[INTRA_MODES][INTRA_MODES][INTRA_MODES];
457   int switchable_interp_costs[SWITCHABLE_FILTER_CONTEXTS][SWITCHABLE_FILTERS];
458   int partition_cost[PARTITION_CONTEXTS][PARTITION_TYPES];
459
460   int multi_arf_allowed;
461   int multi_arf_enabled;
462   int multi_arf_last_grp_enabled;
463
464 #if CONFIG_VP9_TEMPORAL_DENOISING
465   VP9_DENOISER denoiser;
466 #endif
467
468   int resize_pending;
469   int resize_state;
470   int resize_scale_num;
471   int resize_scale_den;
472   int resize_avg_qp;
473   int resize_buffer_underflow;
474   int resize_count;
475
476   // VAR_BASED_PARTITION thresholds
477   // 0 - threshold_64x64; 1 - threshold_32x32;
478   // 2 - threshold_16x16; 3 - vbp_threshold_8x8;
479   int64_t vbp_thresholds[4];
480   int64_t vbp_threshold_minmax;
481   int64_t vbp_threshold_sad;
482   BLOCK_SIZE vbp_bsize_min;
483
484   // Multi-threading
485   int num_workers;
486   VPxWorker *workers;
487   struct EncWorkerData *tile_thr_data;
488   VP9LfSync lf_row_sync;
489 } VP10_COMP;
490
491 void vp10_initialize_enc(void);
492
493 struct VP10_COMP *vp10_create_compressor(VP10EncoderConfig *oxcf,
494                                        BufferPool *const pool);
495 void vp10_remove_compressor(VP10_COMP *cpi);
496
497 void vp10_change_config(VP10_COMP *cpi, const VP10EncoderConfig *oxcf);
498
499   // receive a frames worth of data. caller can assume that a copy of this
500   // frame is made and not just a copy of the pointer..
501 int vp10_receive_raw_frame(VP10_COMP *cpi, unsigned int frame_flags,
502                           YV12_BUFFER_CONFIG *sd, int64_t time_stamp,
503                           int64_t end_time_stamp);
504
505 int vp10_get_compressed_data(VP10_COMP *cpi, unsigned int *frame_flags,
506                             size_t *size, uint8_t *dest,
507                             int64_t *time_stamp, int64_t *time_end, int flush);
508
509 int vp10_get_preview_raw_frame(VP10_COMP *cpi, YV12_BUFFER_CONFIG *dest,
510                               vp10_ppflags_t *flags);
511
512 int vp10_use_as_reference(VP10_COMP *cpi, int ref_frame_flags);
513
514 void vp10_update_reference(VP10_COMP *cpi, int ref_frame_flags);
515
516 int vp10_copy_reference_enc(VP10_COMP *cpi, VP9_REFFRAME ref_frame_flag,
517                            YV12_BUFFER_CONFIG *sd);
518
519 int vp10_set_reference_enc(VP10_COMP *cpi, VP9_REFFRAME ref_frame_flag,
520                           YV12_BUFFER_CONFIG *sd);
521
522 int vp10_update_entropy(VP10_COMP *cpi, int update);
523
524 int vp10_set_active_map(VP10_COMP *cpi, unsigned char *map, int rows, int cols);
525
526 int vp10_get_active_map(VP10_COMP *cpi, unsigned char *map, int rows, int cols);
527
528 int vp10_set_internal_size(VP10_COMP *cpi,
529                           VPX_SCALING horiz_mode, VPX_SCALING vert_mode);
530
531 int vp10_set_size_literal(VP10_COMP *cpi, unsigned int width,
532                          unsigned int height);
533
534 int vp10_get_quantizer(struct VP10_COMP *cpi);
535
536 static INLINE int frame_is_kf_gf_arf(const VP10_COMP *cpi) {
537   return frame_is_intra_only(&cpi->common) ||
538          cpi->refresh_alt_ref_frame ||
539          (cpi->refresh_golden_frame && !cpi->rc.is_src_frame_alt_ref);
540 }
541
542 static INLINE int get_ref_frame_map_idx(const VP10_COMP *cpi,
543                                         MV_REFERENCE_FRAME ref_frame) {
544   if (ref_frame == LAST_FRAME) {
545     return cpi->lst_fb_idx;
546   } else if (ref_frame == GOLDEN_FRAME) {
547     return cpi->gld_fb_idx;
548   } else {
549     return cpi->alt_fb_idx;
550   }
551 }
552
553 static INLINE int get_ref_frame_buf_idx(const VP10_COMP *const cpi,
554                                         int ref_frame) {
555   const VP10_COMMON *const cm = &cpi->common;
556   const int map_idx = get_ref_frame_map_idx(cpi, ref_frame);
557   return (map_idx != INVALID_IDX) ? cm->ref_frame_map[map_idx] : INVALID_IDX;
558 }
559
560 static INLINE YV12_BUFFER_CONFIG *get_ref_frame_buffer(
561     VP10_COMP *cpi, MV_REFERENCE_FRAME ref_frame) {
562   VP10_COMMON *const cm = &cpi->common;
563   const int buf_idx = get_ref_frame_buf_idx(cpi, ref_frame);
564   return
565       buf_idx != INVALID_IDX ? &cm->buffer_pool->frame_bufs[buf_idx].buf : NULL;
566 }
567
568 static INLINE int get_token_alloc(int mb_rows, int mb_cols) {
569   // TODO(JBB): double check we can't exceed this token count if we have a
570   // 32x32 transform crossing a boundary at a multiple of 16.
571   // mb_rows, cols are in units of 16 pixels. We assume 3 planes all at full
572   // resolution. We assume up to 1 token per pixel, and then allow
573   // a head room of 4.
574   return mb_rows * mb_cols * (16 * 16 * 3 + 4);
575 }
576
577 // Get the allocated token size for a tile. It does the same calculation as in
578 // the frame token allocation.
579 static INLINE int allocated_tokens(TileInfo tile) {
580   int tile_mb_rows = (tile.mi_row_end - tile.mi_row_start + 1) >> 1;
581   int tile_mb_cols = (tile.mi_col_end - tile.mi_col_start + 1) >> 1;
582
583   return get_token_alloc(tile_mb_rows, tile_mb_cols);
584 }
585
586 int64_t vp10_get_y_sse(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b);
587 #if CONFIG_VP9_HIGHBITDEPTH
588 int64_t vp10_highbd_get_y_sse(const YV12_BUFFER_CONFIG *a,
589                              const YV12_BUFFER_CONFIG *b);
590 #endif  // CONFIG_VP9_HIGHBITDEPTH
591
592 void vp10_alloc_compressor_data(VP10_COMP *cpi);
593
594 void vp10_scale_references(VP10_COMP *cpi);
595
596 void vp10_update_reference_frames(VP10_COMP *cpi);
597
598 void vp10_set_high_precision_mv(VP10_COMP *cpi, int allow_high_precision_mv);
599
600 YV12_BUFFER_CONFIG *vp10_scale_if_required_fast(VP10_COMMON *cm,
601                                                YV12_BUFFER_CONFIG *unscaled,
602                                                YV12_BUFFER_CONFIG *scaled);
603
604 YV12_BUFFER_CONFIG *vp10_scale_if_required(VP10_COMMON *cm,
605                                           YV12_BUFFER_CONFIG *unscaled,
606                                           YV12_BUFFER_CONFIG *scaled);
607
608 void vp10_apply_encoding_flags(VP10_COMP *cpi, vpx_enc_frame_flags_t flags);
609
610 static INLINE int is_altref_enabled(const VP10_COMP *const cpi) {
611   return cpi->oxcf.mode != REALTIME && cpi->oxcf.lag_in_frames > 0 &&
612          cpi->oxcf.enable_auto_arf;
613 }
614
615 static INLINE void set_ref_ptrs(VP10_COMMON *cm, MACROBLOCKD *xd,
616                                 MV_REFERENCE_FRAME ref0,
617                                 MV_REFERENCE_FRAME ref1) {
618   xd->block_refs[0] = &cm->frame_refs[ref0 >= LAST_FRAME ? ref0 - LAST_FRAME
619                                                          : 0];
620   xd->block_refs[1] = &cm->frame_refs[ref1 >= LAST_FRAME ? ref1 - LAST_FRAME
621                                                          : 0];
622 }
623
624 static INLINE int get_chessboard_index(const int frame_index) {
625   return frame_index & 0x1;
626 }
627
628 static INLINE int *cond_cost_list(const struct VP10_COMP *cpi, int *cost_list) {
629   return cpi->sf.mv.subpel_search_method != SUBPEL_TREE ? cost_list : NULL;
630 }
631
632 void vp10_new_framerate(VP10_COMP *cpi, double framerate);
633
634 #define LAYER_IDS_TO_IDX(sl, tl, num_tl) ((sl) * (num_tl) + (tl))
635
636 #ifdef __cplusplus
637 }  // extern "C"
638 #endif
639
640 #endif  // VP10_ENCODER_ENCODER_H_