Upstream version 6.35.121.0
[platform/framework/web/crosswalk.git] / src / third_party / libvpx / source / libvpx / vp9 / encoder / vp9_lookahead.c
1 /*
2  *  Copyright (c) 2011 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 #include <assert.h>
11 #include <stdlib.h>
12
13 #include "./vpx_config.h"
14
15 #include "vp9/common/vp9_common.h"
16
17 #include "vp9/encoder/vp9_extend.h"
18 #include "vp9/encoder/vp9_lookahead.h"
19 #include "vp9/encoder/vp9_onyx_int.h"
20
21 struct lookahead_ctx {
22   unsigned int max_sz;         /* Absolute size of the queue */
23   unsigned int sz;             /* Number of buffers currently in the queue */
24   unsigned int read_idx;       /* Read index */
25   unsigned int write_idx;      /* Write index */
26   struct lookahead_entry *buf; /* Buffer list */
27 };
28
29
30 /* Return the buffer at the given absolute index and increment the index */
31 static struct lookahead_entry * pop(struct lookahead_ctx *ctx,
32                                     unsigned int *idx) {
33   unsigned int index = *idx;
34   struct lookahead_entry *buf = ctx->buf + index;
35
36   assert(index < ctx->max_sz);
37   if (++index >= ctx->max_sz)
38     index -= ctx->max_sz;
39   *idx = index;
40   return buf;
41 }
42
43
44 void vp9_lookahead_destroy(struct lookahead_ctx *ctx) {
45   if (ctx) {
46     if (ctx->buf) {
47       unsigned int i;
48
49       for (i = 0; i < ctx->max_sz; i++)
50         vp9_free_frame_buffer(&ctx->buf[i].img);
51       free(ctx->buf);
52     }
53     free(ctx);
54   }
55 }
56
57
58 struct lookahead_ctx * vp9_lookahead_init(unsigned int width,
59                                           unsigned int height,
60                                           unsigned int subsampling_x,
61                                           unsigned int subsampling_y,
62                                           unsigned int depth) {
63   struct lookahead_ctx *ctx = NULL;
64
65   // Clamp the lookahead queue depth
66   depth = clamp(depth, 1, MAX_LAG_BUFFERS);
67
68   // Allocate the lookahead structures
69   ctx = calloc(1, sizeof(*ctx));
70   if (ctx) {
71     unsigned int i;
72     ctx->max_sz = depth;
73     ctx->buf = calloc(depth, sizeof(*ctx->buf));
74     if (!ctx->buf)
75       goto bail;
76     for (i = 0; i < depth; i++)
77       if (vp9_alloc_frame_buffer(&ctx->buf[i].img,
78                                  width, height, subsampling_x, subsampling_y,
79                                  VP9_ENC_BORDER_IN_PIXELS))
80         goto bail;
81   }
82   return ctx;
83  bail:
84   vp9_lookahead_destroy(ctx);
85   return NULL;
86 }
87
88 #define USE_PARTIAL_COPY 0
89
90 int vp9_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG   *src,
91                        int64_t ts_start, int64_t ts_end, unsigned int flags) {
92   struct lookahead_entry *buf;
93 #if USE_PARTIAL_COPY
94   int row, col, active_end;
95   int mb_rows = (src->y_height + 15) >> 4;
96   int mb_cols = (src->y_width + 15) >> 4;
97 #endif
98
99   if (ctx->sz + 1 > ctx->max_sz)
100     return 1;
101   ctx->sz++;
102   buf = pop(ctx, &ctx->write_idx);
103
104 #if USE_PARTIAL_COPY
105   // TODO(jkoleszar): This is disabled for now, as
106   // vp9_copy_and_extend_frame_with_rect is not subsampling/alpha aware.
107
108   // Only do this partial copy if the following conditions are all met:
109   // 1. Lookahead queue has has size of 1.
110   // 2. Active map is provided.
111   // 3. This is not a key frame, golden nor altref frame.
112   if (ctx->max_sz == 1 && active_map && !flags) {
113     for (row = 0; row < mb_rows; ++row) {
114       col = 0;
115
116       while (1) {
117         // Find the first active macroblock in this row.
118         for (; col < mb_cols; ++col) {
119           if (active_map[col])
120             break;
121         }
122
123         // No more active macroblock in this row.
124         if (col == mb_cols)
125           break;
126
127         // Find the end of active region in this row.
128         active_end = col;
129
130         for (; active_end < mb_cols; ++active_end) {
131           if (!active_map[active_end])
132             break;
133         }
134
135         // Only copy this active region.
136         vp9_copy_and_extend_frame_with_rect(src, &buf->img,
137                                             row << 4,
138                                             col << 4, 16,
139                                             (active_end - col) << 4);
140
141         // Start again from the end of this active region.
142         col = active_end;
143       }
144
145       active_map += mb_cols;
146     }
147   } else {
148     vp9_copy_and_extend_frame(src, &buf->img);
149   }
150 #else
151   // Partial copy not implemented yet
152   vp9_copy_and_extend_frame(src, &buf->img);
153 #endif
154
155   buf->ts_start = ts_start;
156   buf->ts_end = ts_end;
157   buf->flags = flags;
158   return 0;
159 }
160
161
162 struct lookahead_entry * vp9_lookahead_pop(struct lookahead_ctx *ctx,
163                                            int drain) {
164   struct lookahead_entry *buf = NULL;
165
166   if (ctx->sz && (drain || ctx->sz == ctx->max_sz)) {
167     buf = pop(ctx, &ctx->read_idx);
168     ctx->sz--;
169   }
170   return buf;
171 }
172
173
174 struct lookahead_entry * vp9_lookahead_peek(struct lookahead_ctx *ctx,
175                                             int index) {
176   struct lookahead_entry *buf = NULL;
177
178   if (index < (int)ctx->sz) {
179     index += ctx->read_idx;
180     if (index >= (int)ctx->max_sz)
181       index -= ctx->max_sz;
182     buf = ctx->buf + index;
183   }
184   return buf;
185 }
186
187 unsigned int vp9_lookahead_depth(struct lookahead_ctx *ctx) {
188   return ctx->sz;
189 }