]> granicus.if.org Git - libvpx/blob - vp10/encoder/encoder.h
vp10 cleanup: remove svc code
[libvpx] / 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 } VP10EncoderConfig;
232
233 static INLINE int is_lossless_requested(const VP10EncoderConfig *cfg) {
234   return cfg->best_allowed_q == 0 && cfg->worst_allowed_q == 0;
235 }
236
237 // TODO(jingning) All spatially adaptive variables should go to TileDataEnc.
238 typedef struct TileDataEnc {
239   TileInfo tile_info;
240   int thresh_freq_fact[BLOCK_SIZES][MAX_MODES];
241   int mode_map[BLOCK_SIZES][MAX_MODES];
242 } TileDataEnc;
243
244 typedef struct RD_COUNTS {
245   vp10_coeff_count coef_counts[TX_SIZES][PLANE_TYPES];
246   int64_t comp_pred_diff[REFERENCE_MODES];
247   int64_t filter_diff[SWITCHABLE_FILTER_CONTEXTS];
248 } RD_COUNTS;
249
250 typedef struct ThreadData {
251   MACROBLOCK mb;
252   RD_COUNTS rd_counts;
253   FRAME_COUNTS *counts;
254
255   PICK_MODE_CONTEXT *leaf_tree;
256   PC_TREE *pc_tree;
257   PC_TREE *pc_root;
258 } ThreadData;
259
260 struct EncWorkerData;
261
262 typedef struct ActiveMap {
263   int enabled;
264   int update;
265   unsigned char *map;
266 } ActiveMap;
267
268 typedef enum {
269   Y,
270   U,
271   V,
272   ALL
273 } STAT_TYPE;
274
275 typedef struct IMAGE_STAT {
276   double stat[ALL+1];
277   double worst;
278 } ImageStat;
279
280 typedef struct VP10_COMP {
281   QUANTS quants;
282   ThreadData td;
283   MB_MODE_INFO_EXT *mbmi_ext_base;
284   DECLARE_ALIGNED(16, int16_t, y_dequant[QINDEX_RANGE][8]);
285   DECLARE_ALIGNED(16, int16_t, uv_dequant[QINDEX_RANGE][8]);
286   VP10_COMMON common;
287   VP10EncoderConfig oxcf;
288   struct lookahead_ctx    *lookahead;
289   struct lookahead_entry  *alt_ref_source;
290
291   YV12_BUFFER_CONFIG *Source;
292   YV12_BUFFER_CONFIG *Last_Source;  // NULL for first frame and alt_ref frames
293   YV12_BUFFER_CONFIG *un_scaled_source;
294   YV12_BUFFER_CONFIG scaled_source;
295   YV12_BUFFER_CONFIG *unscaled_last_source;
296   YV12_BUFFER_CONFIG scaled_last_source;
297
298   TileDataEnc *tile_data;
299   int allocated_tiles;  // Keep track of memory allocated for tiles.
300
301   // For a still frame, this flag is set to 1 to skip partition search.
302   int partition_search_skippable_frame;
303
304   int scaled_ref_idx[MAX_REF_FRAMES];
305   int lst_fb_idx;
306   int gld_fb_idx;
307   int alt_fb_idx;
308
309   int refresh_last_frame;
310   int refresh_golden_frame;
311   int refresh_alt_ref_frame;
312
313   int ext_refresh_frame_flags_pending;
314   int ext_refresh_last_frame;
315   int ext_refresh_golden_frame;
316   int ext_refresh_alt_ref_frame;
317
318   int ext_refresh_frame_context_pending;
319   int ext_refresh_frame_context;
320
321   YV12_BUFFER_CONFIG last_frame_uf;
322
323   TOKENEXTRA *tile_tok[4][1 << 6];
324   unsigned int tok_count[4][1 << 6];
325
326   // Ambient reconstruction err target for force key frames
327   int64_t ambient_err;
328
329   RD_OPT rd;
330
331   CODING_CONTEXT coding_context;
332
333   int *nmvcosts[2];
334   int *nmvcosts_hp[2];
335   int *nmvsadcosts[2];
336   int *nmvsadcosts_hp[2];
337
338   int64_t last_time_stamp_seen;
339   int64_t last_end_time_stamp_seen;
340   int64_t first_time_stamp_ever;
341
342   RATE_CONTROL rc;
343   double framerate;
344
345   int interp_filter_selected[MAX_REF_FRAMES][SWITCHABLE];
346
347   struct vpx_codec_pkt_list  *output_pkt_list;
348
349   MBGRAPH_FRAME_STATS mbgraph_stats[MAX_LAG_BUFFERS];
350   int mbgraph_n_frames;             // number of frames filled in the above
351   int static_mb_pct;                // % forced skip mbs by segmentation
352   int ref_frame_flags;
353
354   SPEED_FEATURES sf;
355
356   unsigned int max_mv_magnitude;
357   int mv_step_param;
358
359   int allow_comp_inter_inter;
360
361   // Default value is 1. From first pass stats, encode_breakout may be disabled.
362   ENCODE_BREAKOUT_TYPE allow_encode_breakout;
363
364   // Get threshold from external input. A suggested threshold is 800 for HD
365   // clips, and 300 for < HD clips.
366   int encode_breakout;
367
368   unsigned char *segmentation_map;
369
370   // segment threashold for encode breakout
371   int  segment_encode_breakout[MAX_SEGMENTS];
372
373   CYCLIC_REFRESH *cyclic_refresh;
374   ActiveMap active_map;
375
376   fractional_mv_step_fp *find_fractional_mv_step;
377   vp10_full_search_fn_t full_search_sad;
378   vp10_diamond_search_fn_t diamond_search_sad;
379   vp9_variance_fn_ptr_t fn_ptr[BLOCK_SIZES];
380   uint64_t time_receive_data;
381   uint64_t time_compress_data;
382   uint64_t time_pick_lpf;
383   uint64_t time_encode_sb_row;
384
385 #if CONFIG_FP_MB_STATS
386   int use_fp_mb_stats;
387 #endif
388
389   TWO_PASS twopass;
390
391   YV12_BUFFER_CONFIG alt_ref_buffer;
392
393
394 #if CONFIG_INTERNAL_STATS
395   unsigned int mode_chosen_counts[MAX_MODES];
396
397   int    count;
398   uint64_t total_sq_error;
399   uint64_t total_samples;
400   ImageStat psnr;
401
402   uint64_t totalp_sq_error;
403   uint64_t totalp_samples;
404   ImageStat psnrp;
405
406   double total_blockiness;
407   double worst_blockiness;
408
409   int    bytes;
410   double summed_quality;
411   double summed_weights;
412   double summedp_quality;
413   double summedp_weights;
414   unsigned int tot_recode_hits;
415   double worst_ssim;
416
417   ImageStat ssimg;
418   ImageStat fastssim;
419   ImageStat psnrhvs;
420
421   int b_calculate_ssimg;
422   int b_calculate_blockiness;
423
424   int b_calculate_consistency;
425
426   double total_inconsistency;
427   double worst_consistency;
428   Ssimv *ssim_vars;
429   Metrics metrics;
430 #endif
431   int b_calculate_psnr;
432
433   int droppable;
434
435   int initial_width;
436   int initial_height;
437   int initial_mbs;  // Number of MBs in the full-size frame; to be used to
438                     // normalize the firstpass stats. This will differ from the
439                     // number of MBs in the current frame when the frame is
440                     // scaled.
441
442   // Store frame variance info in SOURCE_VAR_BASED_PARTITION search type.
443   diff *source_diff_var;
444   // The threshold used in SOURCE_VAR_BASED_PARTITION search type.
445   unsigned int source_var_thresh;
446   int frames_till_next_var_check;
447
448   int frame_flags;
449
450   search_site_config ss_cfg;
451
452   int mbmode_cost[INTRA_MODES];
453   unsigned int inter_mode_cost[INTER_MODE_CONTEXTS][INTER_MODES];
454   int intra_uv_mode_cost[FRAME_TYPES][INTRA_MODES];
455   int y_mode_costs[INTRA_MODES][INTRA_MODES][INTRA_MODES];
456   int switchable_interp_costs[SWITCHABLE_FILTER_CONTEXTS][SWITCHABLE_FILTERS];
457   int partition_cost[PARTITION_CONTEXTS][PARTITION_TYPES];
458
459   int multi_arf_allowed;
460   int multi_arf_enabled;
461   int multi_arf_last_grp_enabled;
462
463 #if CONFIG_VP9_TEMPORAL_DENOISING
464   VP9_DENOISER denoiser;
465 #endif
466
467   int resize_pending;
468   int resize_state;
469   int resize_scale_num;
470   int resize_scale_den;
471   int resize_avg_qp;
472   int resize_buffer_underflow;
473   int resize_count;
474
475   // VAR_BASED_PARTITION thresholds
476   // 0 - threshold_64x64; 1 - threshold_32x32;
477   // 2 - threshold_16x16; 3 - vbp_threshold_8x8;
478   int64_t vbp_thresholds[4];
479   int64_t vbp_threshold_minmax;
480   int64_t vbp_threshold_sad;
481   BLOCK_SIZE vbp_bsize_min;
482
483   // Multi-threading
484   int num_workers;
485   VPxWorker *workers;
486   struct EncWorkerData *tile_thr_data;
487   VP9LfSync lf_row_sync;
488 } VP10_COMP;
489
490 void vp10_initialize_enc(void);
491
492 struct VP10_COMP *vp10_create_compressor(VP10EncoderConfig *oxcf,
493                                        BufferPool *const pool);
494 void vp10_remove_compressor(VP10_COMP *cpi);
495
496 void vp10_change_config(VP10_COMP *cpi, const VP10EncoderConfig *oxcf);
497
498   // receive a frames worth of data. caller can assume that a copy of this
499   // frame is made and not just a copy of the pointer..
500 int vp10_receive_raw_frame(VP10_COMP *cpi, unsigned int frame_flags,
501                           YV12_BUFFER_CONFIG *sd, int64_t time_stamp,
502                           int64_t end_time_stamp);
503
504 int vp10_get_compressed_data(VP10_COMP *cpi, unsigned int *frame_flags,
505                             size_t *size, uint8_t *dest,
506                             int64_t *time_stamp, int64_t *time_end, int flush);
507
508 int vp10_get_preview_raw_frame(VP10_COMP *cpi, YV12_BUFFER_CONFIG *dest,
509                               vp10_ppflags_t *flags);
510
511 int vp10_use_as_reference(VP10_COMP *cpi, int ref_frame_flags);
512
513 void vp10_update_reference(VP10_COMP *cpi, int ref_frame_flags);
514
515 int vp10_copy_reference_enc(VP10_COMP *cpi, VP9_REFFRAME ref_frame_flag,
516                            YV12_BUFFER_CONFIG *sd);
517
518 int vp10_set_reference_enc(VP10_COMP *cpi, VP9_REFFRAME ref_frame_flag,
519                           YV12_BUFFER_CONFIG *sd);
520
521 int vp10_update_entropy(VP10_COMP *cpi, int update);
522
523 int vp10_set_active_map(VP10_COMP *cpi, unsigned char *map, int rows, int cols);
524
525 int vp10_get_active_map(VP10_COMP *cpi, unsigned char *map, int rows, int cols);
526
527 int vp10_set_internal_size(VP10_COMP *cpi,
528                           VPX_SCALING horiz_mode, VPX_SCALING vert_mode);
529
530 int vp10_set_size_literal(VP10_COMP *cpi, unsigned int width,
531                          unsigned int height);
532
533 int vp10_get_quantizer(struct VP10_COMP *cpi);
534
535 static INLINE int frame_is_kf_gf_arf(const VP10_COMP *cpi) {
536   return frame_is_intra_only(&cpi->common) ||
537          cpi->refresh_alt_ref_frame ||
538          (cpi->refresh_golden_frame && !cpi->rc.is_src_frame_alt_ref);
539 }
540
541 static INLINE int get_ref_frame_map_idx(const VP10_COMP *cpi,
542                                         MV_REFERENCE_FRAME ref_frame) {
543   if (ref_frame == LAST_FRAME) {
544     return cpi->lst_fb_idx;
545   } else if (ref_frame == GOLDEN_FRAME) {
546     return cpi->gld_fb_idx;
547   } else {
548     return cpi->alt_fb_idx;
549   }
550 }
551
552 static INLINE int get_ref_frame_buf_idx(const VP10_COMP *const cpi,
553                                         int ref_frame) {
554   const VP10_COMMON *const cm = &cpi->common;
555   const int map_idx = get_ref_frame_map_idx(cpi, ref_frame);
556   return (map_idx != INVALID_IDX) ? cm->ref_frame_map[map_idx] : INVALID_IDX;
557 }
558
559 static INLINE YV12_BUFFER_CONFIG *get_ref_frame_buffer(
560     VP10_COMP *cpi, MV_REFERENCE_FRAME ref_frame) {
561   VP10_COMMON *const cm = &cpi->common;
562   const int buf_idx = get_ref_frame_buf_idx(cpi, ref_frame);
563   return
564       buf_idx != INVALID_IDX ? &cm->buffer_pool->frame_bufs[buf_idx].buf : NULL;
565 }
566
567 static INLINE int get_token_alloc(int mb_rows, int mb_cols) {
568   // TODO(JBB): double check we can't exceed this token count if we have a
569   // 32x32 transform crossing a boundary at a multiple of 16.
570   // mb_rows, cols are in units of 16 pixels. We assume 3 planes all at full
571   // resolution. We assume up to 1 token per pixel, and then allow
572   // a head room of 4.
573   return mb_rows * mb_cols * (16 * 16 * 3 + 4);
574 }
575
576 // Get the allocated token size for a tile. It does the same calculation as in
577 // the frame token allocation.
578 static INLINE int allocated_tokens(TileInfo tile) {
579   int tile_mb_rows = (tile.mi_row_end - tile.mi_row_start + 1) >> 1;
580   int tile_mb_cols = (tile.mi_col_end - tile.mi_col_start + 1) >> 1;
581
582   return get_token_alloc(tile_mb_rows, tile_mb_cols);
583 }
584
585 int64_t vp10_get_y_sse(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b);
586 #if CONFIG_VP9_HIGHBITDEPTH
587 int64_t vp10_highbd_get_y_sse(const YV12_BUFFER_CONFIG *a,
588                              const YV12_BUFFER_CONFIG *b);
589 #endif  // CONFIG_VP9_HIGHBITDEPTH
590
591 void vp10_alloc_compressor_data(VP10_COMP *cpi);
592
593 void vp10_scale_references(VP10_COMP *cpi);
594
595 void vp10_update_reference_frames(VP10_COMP *cpi);
596
597 void vp10_set_high_precision_mv(VP10_COMP *cpi, int allow_high_precision_mv);
598
599 YV12_BUFFER_CONFIG *vp10_scale_if_required_fast(VP10_COMMON *cm,
600                                                YV12_BUFFER_CONFIG *unscaled,
601                                                YV12_BUFFER_CONFIG *scaled);
602
603 YV12_BUFFER_CONFIG *vp10_scale_if_required(VP10_COMMON *cm,
604                                           YV12_BUFFER_CONFIG *unscaled,
605                                           YV12_BUFFER_CONFIG *scaled);
606
607 void vp10_apply_encoding_flags(VP10_COMP *cpi, vpx_enc_frame_flags_t flags);
608
609 static INLINE int is_altref_enabled(const VP10_COMP *const cpi) {
610   return cpi->oxcf.mode != REALTIME && cpi->oxcf.lag_in_frames > 0 &&
611          cpi->oxcf.enable_auto_arf;
612 }
613
614 static INLINE void set_ref_ptrs(VP10_COMMON *cm, MACROBLOCKD *xd,
615                                 MV_REFERENCE_FRAME ref0,
616                                 MV_REFERENCE_FRAME ref1) {
617   xd->block_refs[0] = &cm->frame_refs[ref0 >= LAST_FRAME ? ref0 - LAST_FRAME
618                                                          : 0];
619   xd->block_refs[1] = &cm->frame_refs[ref1 >= LAST_FRAME ? ref1 - LAST_FRAME
620                                                          : 0];
621 }
622
623 static INLINE int get_chessboard_index(const int frame_index) {
624   return frame_index & 0x1;
625 }
626
627 static INLINE int *cond_cost_list(const struct VP10_COMP *cpi, int *cost_list) {
628   return cpi->sf.mv.subpel_search_method != SUBPEL_TREE ? cost_list : NULL;
629 }
630
631 void vp10_new_framerate(VP10_COMP *cpi, double framerate);
632
633 #define LAYER_IDS_TO_IDX(sl, tl, num_tl) ((sl) * (num_tl) + (tl))
634
635 #ifdef __cplusplus
636 }  // extern "C"
637 #endif
638
639 #endif  // VP10_ENCODER_ENCODER_H_