]> granicus.if.org Git - libvpx/blob - vp9/vp9_dx_iface.c
Merge "Prevent decoder from using uninitialized entropy context."
[libvpx] / vp9 / vp9_dx_iface.c
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 #include <stdlib.h>
12 #include <string.h>
13
14 #include "./vpx_config.h"
15 #include "./vpx_version.h"
16
17 #include "vpx/internal/vpx_codec_internal.h"
18 #include "vpx/vp8dx.h"
19 #include "vpx/vpx_decoder.h"
20
21 #include "vp9/common/vp9_frame_buffers.h"
22
23 #include "vp9/decoder/vp9_decoder.h"
24 #include "vp9/decoder/vp9_decodeframe.h"
25 #include "vp9/decoder/vp9_read_bit_buffer.h"
26
27 #include "vp9/vp9_iface_common.h"
28
29 #define VP9_CAP_POSTPROC (CONFIG_VP9_POSTPROC ? VPX_CODEC_CAP_POSTPROC : 0)
30
31 typedef vpx_codec_stream_info_t vp9_stream_info_t;
32
33 struct vpx_codec_alg_priv {
34   vpx_codec_priv_t        base;
35   vpx_codec_dec_cfg_t     cfg;
36   vp9_stream_info_t       si;
37   struct VP9Decoder *pbi;
38   int                     postproc_cfg_set;
39   vp8_postproc_cfg_t      postproc_cfg;
40   vpx_decrypt_cb          decrypt_cb;
41   void                   *decrypt_state;
42   vpx_image_t             img;
43   int                     img_avail;
44   int                     flushed;
45   int                     invert_tile_order;
46   int                     frame_parallel_decode;  // frame-based threading.
47
48   // External frame buffer info to save for VP9 common.
49   void *ext_priv;  // Private data associated with the external frame buffers.
50   vpx_get_frame_buffer_cb_fn_t get_ext_fb_cb;
51   vpx_release_frame_buffer_cb_fn_t release_ext_fb_cb;
52 };
53
54 static vpx_codec_err_t decoder_init(vpx_codec_ctx_t *ctx,
55                                     vpx_codec_priv_enc_mr_cfg_t *data) {
56   // This function only allocates space for the vpx_codec_alg_priv_t
57   // structure. More memory may be required at the time the stream
58   // information becomes known.
59   (void)data;
60
61   if (!ctx->priv) {
62     vpx_codec_alg_priv_t *const priv = vpx_calloc(1, sizeof(*priv));
63     if (priv == NULL)
64       return VPX_CODEC_MEM_ERROR;
65
66     ctx->priv = (vpx_codec_priv_t *)priv;
67     ctx->priv->init_flags = ctx->init_flags;
68
69     priv->si.sz = sizeof(priv->si);
70     priv->flushed = 0;
71     priv->frame_parallel_decode =
72         (ctx->init_flags & VPX_CODEC_USE_FRAME_THREADING);
73     priv->frame_parallel_decode = 0;  // Disable for now
74
75     if (ctx->config.dec) {
76       priv->cfg = *ctx->config.dec;
77       ctx->config.dec = &priv->cfg;
78     }
79   }
80
81   return VPX_CODEC_OK;
82 }
83
84 static vpx_codec_err_t decoder_destroy(vpx_codec_alg_priv_t *ctx) {
85   if (ctx->pbi) {
86     vp9_decoder_remove(ctx->pbi);
87     ctx->pbi = NULL;
88   }
89
90   vpx_free(ctx);
91
92   return VPX_CODEC_OK;
93 }
94
95 static int parse_bitdepth_colorspace_sampling(
96     BITSTREAM_PROFILE profile, struct vp9_read_bit_buffer *rb) {
97   const int sRGB = 7;
98   int colorspace;
99   if (profile >= PROFILE_2)
100     rb->bit_offset += 1;  // Bit-depth 10 or 12.
101   colorspace = vp9_rb_read_literal(rb, 3);
102   if (colorspace != sRGB) {
103     rb->bit_offset += 1;  // [16,235] (including xvycc) vs [0,255] range.
104     if (profile == PROFILE_1 || profile == PROFILE_3) {
105       rb->bit_offset += 2;  // subsampling x/y.
106       rb->bit_offset += 1;  // unused.
107     }
108   } else {
109     if (profile == PROFILE_1 || profile == PROFILE_3) {
110       rb->bit_offset += 1;  // unused
111     } else {
112       // RGB is only available in version 1.
113       return 0;
114     }
115   }
116   return 1;
117 }
118
119 static vpx_codec_err_t decoder_peek_si_internal(const uint8_t *data,
120                                                 unsigned int data_sz,
121                                                 vpx_codec_stream_info_t *si,
122                                                 int *is_intra_only,
123                                                 vpx_decrypt_cb decrypt_cb,
124                                                 void *decrypt_state) {
125   int intra_only_flag = 0;
126   uint8_t clear_buffer[9];
127
128   if (data + data_sz <= data)
129     return VPX_CODEC_INVALID_PARAM;
130
131   si->is_kf = 0;
132   si->w = si->h = 0;
133
134   if (decrypt_cb) {
135     data_sz = MIN(sizeof(clear_buffer), data_sz);
136     decrypt_cb(decrypt_state, data, clear_buffer, data_sz);
137     data = clear_buffer;
138   }
139
140   {
141     int show_frame;
142     int error_resilient;
143     struct vp9_read_bit_buffer rb = { data, data + data_sz, 0, NULL, NULL };
144     const int frame_marker = vp9_rb_read_literal(&rb, 2);
145     const BITSTREAM_PROFILE profile = vp9_read_profile(&rb);
146
147     if (frame_marker != VP9_FRAME_MARKER)
148       return VPX_CODEC_UNSUP_BITSTREAM;
149
150     if (profile >= MAX_PROFILES) return VPX_CODEC_UNSUP_BITSTREAM;
151
152     if (vp9_rb_read_bit(&rb)) {  // show an existing frame
153       vp9_rb_read_literal(&rb, 3);  // Frame buffer to show.
154       return VPX_CODEC_OK;
155     }
156
157     if (data_sz <= 8)
158       return VPX_CODEC_UNSUP_BITSTREAM;
159
160     si->is_kf = !vp9_rb_read_bit(&rb);
161     show_frame = vp9_rb_read_bit(&rb);
162     error_resilient = vp9_rb_read_bit(&rb);
163
164     if (si->is_kf) {
165       if (!vp9_read_sync_code(&rb))
166         return VPX_CODEC_UNSUP_BITSTREAM;
167
168       if (!parse_bitdepth_colorspace_sampling(profile, &rb))
169         return VPX_CODEC_UNSUP_BITSTREAM;
170       vp9_read_frame_size(&rb, (int *)&si->w, (int *)&si->h);
171     } else {
172       intra_only_flag = show_frame ? 0 : vp9_rb_read_bit(&rb);
173
174       rb.bit_offset += error_resilient ? 0 : 2;  // reset_frame_context
175
176       if (intra_only_flag) {
177         if (!vp9_read_sync_code(&rb))
178           return VPX_CODEC_UNSUP_BITSTREAM;
179         if (profile > PROFILE_0) {
180           if (!parse_bitdepth_colorspace_sampling(profile, &rb))
181             return VPX_CODEC_UNSUP_BITSTREAM;
182         }
183         rb.bit_offset += REF_FRAMES;  // refresh_frame_flags
184         vp9_read_frame_size(&rb, (int *)&si->w, (int *)&si->h);
185       }
186     }
187   }
188   if (is_intra_only != NULL)
189     *is_intra_only = intra_only_flag;
190   return VPX_CODEC_OK;
191 }
192
193 static vpx_codec_err_t decoder_peek_si(const uint8_t *data,
194                                        unsigned int data_sz,
195                                        vpx_codec_stream_info_t *si) {
196   return decoder_peek_si_internal(data, data_sz, si, NULL, NULL, NULL);
197 }
198
199 static vpx_codec_err_t decoder_get_si(vpx_codec_alg_priv_t *ctx,
200                                       vpx_codec_stream_info_t *si) {
201   const size_t sz = (si->sz >= sizeof(vp9_stream_info_t))
202                        ? sizeof(vp9_stream_info_t)
203                        : sizeof(vpx_codec_stream_info_t);
204   memcpy(si, &ctx->si, sz);
205   si->sz = (unsigned int)sz;
206
207   return VPX_CODEC_OK;
208 }
209
210 static vpx_codec_err_t update_error_state(vpx_codec_alg_priv_t *ctx,
211                            const struct vpx_internal_error_info *error) {
212   if (error->error_code)
213     ctx->base.err_detail = error->has_detail ? error->detail : NULL;
214
215   return error->error_code;
216 }
217
218 static void init_buffer_callbacks(vpx_codec_alg_priv_t *ctx) {
219   VP9_COMMON *const cm = &ctx->pbi->common;
220
221   cm->new_fb_idx = -1;
222
223   if (ctx->get_ext_fb_cb != NULL && ctx->release_ext_fb_cb != NULL) {
224     cm->get_fb_cb = ctx->get_ext_fb_cb;
225     cm->release_fb_cb = ctx->release_ext_fb_cb;
226     cm->cb_priv = ctx->ext_priv;
227   } else {
228     cm->get_fb_cb = vp9_get_frame_buffer;
229     cm->release_fb_cb = vp9_release_frame_buffer;
230
231     if (vp9_alloc_internal_frame_buffers(&cm->int_frame_buffers))
232       vpx_internal_error(&cm->error, VPX_CODEC_MEM_ERROR,
233                          "Failed to initialize internal frame buffers");
234
235     cm->cb_priv = &cm->int_frame_buffers;
236   }
237 }
238
239 static void set_default_ppflags(vp8_postproc_cfg_t *cfg) {
240   cfg->post_proc_flag = VP8_DEBLOCK | VP8_DEMACROBLOCK;
241   cfg->deblocking_level = 4;
242   cfg->noise_level = 0;
243 }
244
245 static void set_ppflags(const vpx_codec_alg_priv_t *ctx,
246                         vp9_ppflags_t *flags) {
247   flags->post_proc_flag =
248       ctx->postproc_cfg.post_proc_flag;
249
250   flags->deblocking_level = ctx->postproc_cfg.deblocking_level;
251   flags->noise_level = ctx->postproc_cfg.noise_level;
252 }
253
254 static void init_decoder(vpx_codec_alg_priv_t *ctx) {
255   ctx->pbi = vp9_decoder_create();
256   if (ctx->pbi == NULL)
257     return;
258
259   ctx->pbi->max_threads = ctx->cfg.threads;
260   ctx->pbi->inv_tile_order = ctx->invert_tile_order;
261   ctx->pbi->frame_parallel_decode = ctx->frame_parallel_decode;
262
263   // If postprocessing was enabled by the application and a
264   // configuration has not been provided, default it.
265   if (!ctx->postproc_cfg_set &&
266       (ctx->base.init_flags & VPX_CODEC_USE_POSTPROC))
267     set_default_ppflags(&ctx->postproc_cfg);
268
269   init_buffer_callbacks(ctx);
270 }
271
272 static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx,
273                                   const uint8_t **data, unsigned int data_sz,
274                                   void *user_priv, int64_t deadline) {
275   YV12_BUFFER_CONFIG sd;
276   vp9_ppflags_t flags = {0, 0, 0};
277   VP9_COMMON *cm = NULL;
278
279   (void)deadline;
280
281   vp9_zero(sd);
282   ctx->img_avail = 0;
283
284   // Determine the stream parameters. Note that we rely on peek_si to
285   // validate that we have a buffer that does not wrap around the top
286   // of the heap.
287   if (!ctx->si.h) {
288     int is_intra_only = 0;
289     const vpx_codec_err_t res =
290         decoder_peek_si_internal(*data, data_sz, &ctx->si, &is_intra_only,
291                                  ctx->decrypt_cb, ctx->decrypt_state);
292     if (res != VPX_CODEC_OK)
293       return res;
294
295     if (!ctx->si.is_kf && !is_intra_only)
296       return VPX_CODEC_ERROR;
297   }
298
299   // Initialize the decoder instance on the first frame
300   if (ctx->pbi == NULL) {
301     init_decoder(ctx);
302     if (ctx->pbi == NULL)
303       return VPX_CODEC_ERROR;
304   }
305
306   // Set these even if already initialized.  The caller may have changed the
307   // decrypt config between frames.
308   ctx->pbi->decrypt_cb = ctx->decrypt_cb;
309   ctx->pbi->decrypt_state = ctx->decrypt_state;
310
311   cm = &ctx->pbi->common;
312
313   if (vp9_receive_compressed_data(ctx->pbi, data_sz, data))
314     return update_error_state(ctx, &cm->error);
315
316   if (ctx->base.init_flags & VPX_CODEC_USE_POSTPROC)
317     set_ppflags(ctx, &flags);
318
319   if (vp9_get_raw_frame(ctx->pbi, &sd, &flags))
320     return update_error_state(ctx, &cm->error);
321
322   yuvconfig2image(&ctx->img, &sd, user_priv);
323   ctx->img.fb_priv = cm->frame_bufs[cm->new_fb_idx].raw_frame_buffer.priv;
324   ctx->img_avail = 1;
325
326   return VPX_CODEC_OK;
327 }
328
329 static vpx_codec_err_t decoder_decode(vpx_codec_alg_priv_t *ctx,
330                                       const uint8_t *data, unsigned int data_sz,
331                                       void *user_priv, long deadline) {
332   const uint8_t *data_start = data;
333   const uint8_t * const data_end = data + data_sz;
334   vpx_codec_err_t res;
335   uint32_t frame_sizes[8];
336   int frame_count;
337
338   if (data == NULL && data_sz == 0) {
339     ctx->flushed = 1;
340     return VPX_CODEC_OK;
341   }
342
343   // Reset flushed when receiving a valid frame.
344   ctx->flushed = 0;
345
346   res = vp9_parse_superframe_index(data, data_sz, frame_sizes, &frame_count,
347                                    ctx->decrypt_cb, ctx->decrypt_state);
348   if (res != VPX_CODEC_OK)
349     return res;
350
351   if (ctx->frame_parallel_decode) {
352     // Decode in frame parallel mode. When decoding in this mode, the frame
353     // passed to the decoder must be either a normal frame or a superframe with
354     // superframe index so the decoder could get each frame's start position
355     // in the superframe.
356     if (frame_count > 0) {
357       int i;
358
359       for (i = 0; i < frame_count; ++i) {
360         const uint8_t *data_start_copy = data_start;
361         const uint32_t frame_size = frame_sizes[i];
362         vpx_codec_err_t res;
363         if (data_start < data
364             || frame_size > (uint32_t) (data_end - data_start)) {
365           ctx->base.err_detail = "Invalid frame size in index";
366           return VPX_CODEC_CORRUPT_FRAME;
367         }
368
369         res = decode_one(ctx, &data_start_copy, frame_size, user_priv,
370                          deadline);
371         if (res != VPX_CODEC_OK)
372           return res;
373
374         data_start += frame_size;
375       }
376     } else {
377       res = decode_one(ctx, &data_start, data_sz, user_priv, deadline);
378       if (res != VPX_CODEC_OK)
379         return res;
380
381       // Extra data detected after the frame.
382       if (data_start < data_end - 1) {
383         ctx->base.err_detail = "Fail to decode frame in parallel mode";
384         return VPX_CODEC_INCAPABLE;
385       }
386     }
387   } else {
388     // Decode in serial mode.
389     if (frame_count > 0) {
390       int i;
391
392       for (i = 0; i < frame_count; ++i) {
393         const uint8_t *data_start_copy = data_start;
394         const uint32_t frame_size = frame_sizes[i];
395         vpx_codec_err_t res;
396         if (data_start < data
397             || frame_size > (uint32_t) (data_end - data_start)) {
398           ctx->base.err_detail = "Invalid frame size in index";
399           return VPX_CODEC_CORRUPT_FRAME;
400         }
401
402         res = decode_one(ctx, &data_start_copy, frame_size, user_priv,
403                          deadline);
404         if (res != VPX_CODEC_OK)
405           return res;
406
407         data_start += frame_size;
408       }
409     } else {
410       while (data_start < data_end) {
411         const uint32_t frame_size = (uint32_t) (data_end - data_start);
412         const vpx_codec_err_t res = decode_one(ctx, &data_start, frame_size,
413                                                user_priv, deadline);
414         if (res != VPX_CODEC_OK)
415           return res;
416
417         // Account for suboptimal termination by the encoder.
418         while (data_start < data_end) {
419           const uint8_t marker = read_marker(ctx->decrypt_cb,
420                                              ctx->decrypt_state, data_start);
421           if (marker)
422             break;
423           ++data_start;
424         }
425       }
426     }
427   }
428
429   return VPX_CODEC_OK;
430 }
431
432 static vpx_image_t *decoder_get_frame(vpx_codec_alg_priv_t *ctx,
433                                       vpx_codec_iter_t *iter) {
434   vpx_image_t *img = NULL;
435
436   if (ctx->img_avail) {
437     // iter acts as a flip flop, so an image is only returned on the first
438     // call to get_frame.
439     if (!(*iter)) {
440       img = &ctx->img;
441       *iter = img;
442     }
443   }
444   ctx->img_avail = 0;
445
446   return img;
447 }
448
449 static vpx_codec_err_t decoder_set_fb_fn(
450     vpx_codec_alg_priv_t *ctx,
451     vpx_get_frame_buffer_cb_fn_t cb_get,
452     vpx_release_frame_buffer_cb_fn_t cb_release, void *cb_priv) {
453   if (cb_get == NULL || cb_release == NULL) {
454     return VPX_CODEC_INVALID_PARAM;
455   } else if (ctx->pbi == NULL) {
456     // If the decoder has already been initialized, do not accept changes to
457     // the frame buffer functions.
458     ctx->get_ext_fb_cb = cb_get;
459     ctx->release_ext_fb_cb = cb_release;
460     ctx->ext_priv = cb_priv;
461     return VPX_CODEC_OK;
462   }
463
464   return VPX_CODEC_ERROR;
465 }
466
467 static vpx_codec_err_t ctrl_set_reference(vpx_codec_alg_priv_t *ctx,
468                                           va_list args) {
469   vpx_ref_frame_t *const data = va_arg(args, vpx_ref_frame_t *);
470
471   if (data) {
472     vpx_ref_frame_t *const frame = (vpx_ref_frame_t *)data;
473     YV12_BUFFER_CONFIG sd;
474
475     image2yuvconfig(&frame->img, &sd);
476     return vp9_set_reference_dec(&ctx->pbi->common,
477                                  (VP9_REFFRAME)frame->frame_type, &sd);
478   } else {
479     return VPX_CODEC_INVALID_PARAM;
480   }
481 }
482
483 static vpx_codec_err_t ctrl_copy_reference(vpx_codec_alg_priv_t *ctx,
484                                            va_list args) {
485   vpx_ref_frame_t *data = va_arg(args, vpx_ref_frame_t *);
486
487   if (data) {
488     vpx_ref_frame_t *frame = (vpx_ref_frame_t *)data;
489     YV12_BUFFER_CONFIG sd;
490
491     image2yuvconfig(&frame->img, &sd);
492
493     return vp9_copy_reference_dec(ctx->pbi,
494                                   (VP9_REFFRAME)frame->frame_type, &sd);
495   } else {
496     return VPX_CODEC_INVALID_PARAM;
497   }
498 }
499
500 static vpx_codec_err_t ctrl_get_reference(vpx_codec_alg_priv_t *ctx,
501                                           va_list args) {
502   vp9_ref_frame_t *data = va_arg(args, vp9_ref_frame_t *);
503
504   if (data) {
505     YV12_BUFFER_CONFIG* fb = get_ref_frame(&ctx->pbi->common, data->idx);
506     if (fb == NULL) return VPX_CODEC_ERROR;
507
508     yuvconfig2image(&data->img, fb, NULL);
509     return VPX_CODEC_OK;
510   } else {
511     return VPX_CODEC_INVALID_PARAM;
512   }
513 }
514
515 static vpx_codec_err_t ctrl_set_postproc(vpx_codec_alg_priv_t *ctx,
516                                          va_list args) {
517 #if CONFIG_VP9_POSTPROC
518   vp8_postproc_cfg_t *data = va_arg(args, vp8_postproc_cfg_t *);
519
520   if (data) {
521     ctx->postproc_cfg_set = 1;
522     ctx->postproc_cfg = *((vp8_postproc_cfg_t *)data);
523     return VPX_CODEC_OK;
524   } else {
525     return VPX_CODEC_INVALID_PARAM;
526   }
527 #else
528   (void)ctx;
529   (void)args;
530   return VPX_CODEC_INCAPABLE;
531 #endif
532 }
533
534 static vpx_codec_err_t ctrl_set_dbg_options(vpx_codec_alg_priv_t *ctx,
535                                             va_list args) {
536   (void)ctx;
537   (void)args;
538   return VPX_CODEC_INCAPABLE;
539 }
540
541 static vpx_codec_err_t ctrl_get_last_ref_updates(vpx_codec_alg_priv_t *ctx,
542                                                  va_list args) {
543   int *const update_info = va_arg(args, int *);
544
545   if (update_info) {
546     if (ctx->pbi)
547       *update_info = ctx->pbi->refresh_frame_flags;
548     else
549       return VPX_CODEC_ERROR;
550     return VPX_CODEC_OK;
551   } else {
552     return VPX_CODEC_INVALID_PARAM;
553   }
554 }
555
556
557 static vpx_codec_err_t ctrl_get_frame_corrupted(vpx_codec_alg_priv_t *ctx,
558                                                 va_list args) {
559   int *corrupted = va_arg(args, int *);
560
561   if (corrupted != NULL && ctx->pbi != NULL) {
562     const YV12_BUFFER_CONFIG *const frame = ctx->pbi->common.frame_to_show;
563     if (frame == NULL) return VPX_CODEC_ERROR;
564     *corrupted = frame->corrupted;
565     return VPX_CODEC_OK;
566   } else {
567     return VPX_CODEC_INVALID_PARAM;
568   }
569 }
570
571 static vpx_codec_err_t ctrl_get_display_size(vpx_codec_alg_priv_t *ctx,
572                                              va_list args) {
573   int *const display_size = va_arg(args, int *);
574
575   if (display_size) {
576     if (ctx->pbi) {
577       const VP9_COMMON *const cm = &ctx->pbi->common;
578       display_size[0] = cm->display_width;
579       display_size[1] = cm->display_height;
580     } else {
581       return VPX_CODEC_ERROR;
582     }
583     return VPX_CODEC_OK;
584   } else {
585     return VPX_CODEC_INVALID_PARAM;
586   }
587 }
588
589 static vpx_codec_err_t ctrl_get_bit_depth(vpx_codec_alg_priv_t *ctx,
590                                           va_list args) {
591   unsigned int *const bit_depth = va_arg(args, unsigned int *);
592
593   if (bit_depth) {
594     if (ctx->pbi) {
595       const VP9_COMMON *const cm = &ctx->pbi->common;
596       *bit_depth = cm->bit_depth;
597       return VPX_CODEC_OK;
598     } else {
599       return VPX_CODEC_ERROR;
600     }
601   } else {
602     return VPX_CODEC_INVALID_PARAM;
603   }
604 }
605
606 static vpx_codec_err_t ctrl_set_invert_tile_order(vpx_codec_alg_priv_t *ctx,
607                                                   va_list args) {
608   ctx->invert_tile_order = va_arg(args, int);
609   return VPX_CODEC_OK;
610 }
611
612 static vpx_codec_err_t ctrl_set_decryptor(vpx_codec_alg_priv_t *ctx,
613                                           va_list args) {
614   vpx_decrypt_init *init = va_arg(args, vpx_decrypt_init *);
615   ctx->decrypt_cb = init ? init->decrypt_cb : NULL;
616   ctx->decrypt_state = init ? init->decrypt_state : NULL;
617   return VPX_CODEC_OK;
618 }
619
620 static vpx_codec_ctrl_fn_map_t decoder_ctrl_maps[] = {
621   {VP8_COPY_REFERENCE,            ctrl_copy_reference},
622
623   // Setters
624   {VP8_SET_REFERENCE,             ctrl_set_reference},
625   {VP8_SET_POSTPROC,              ctrl_set_postproc},
626   {VP8_SET_DBG_COLOR_REF_FRAME,   ctrl_set_dbg_options},
627   {VP8_SET_DBG_COLOR_MB_MODES,    ctrl_set_dbg_options},
628   {VP8_SET_DBG_COLOR_B_MODES,     ctrl_set_dbg_options},
629   {VP8_SET_DBG_DISPLAY_MV,        ctrl_set_dbg_options},
630   {VP9_INVERT_TILE_DECODE_ORDER,  ctrl_set_invert_tile_order},
631   {VPXD_SET_DECRYPTOR,            ctrl_set_decryptor},
632
633   // Getters
634   {VP8D_GET_LAST_REF_UPDATES,     ctrl_get_last_ref_updates},
635   {VP8D_GET_FRAME_CORRUPTED,      ctrl_get_frame_corrupted},
636   {VP9_GET_REFERENCE,             ctrl_get_reference},
637   {VP9D_GET_DISPLAY_SIZE,         ctrl_get_display_size},
638   {VP9D_GET_BIT_DEPTH,            ctrl_get_bit_depth},
639
640   { -1, NULL},
641 };
642
643 #ifndef VERSION_STRING
644 #define VERSION_STRING
645 #endif
646 CODEC_INTERFACE(vpx_codec_vp9_dx) = {
647   "WebM Project VP9 Decoder" VERSION_STRING,
648   VPX_CODEC_INTERNAL_ABI_VERSION,
649   VPX_CODEC_CAP_DECODER | VP9_CAP_POSTPROC |
650       VPX_CODEC_CAP_EXTERNAL_FRAME_BUFFER,  // vpx_codec_caps_t
651   decoder_init,       // vpx_codec_init_fn_t
652   decoder_destroy,    // vpx_codec_destroy_fn_t
653   decoder_ctrl_maps,  // vpx_codec_ctrl_fn_map_t
654   { // NOLINT
655     decoder_peek_si,    // vpx_codec_peek_si_fn_t
656     decoder_get_si,     // vpx_codec_get_si_fn_t
657     decoder_decode,     // vpx_codec_decode_fn_t
658     decoder_get_frame,  // vpx_codec_frame_get_fn_t
659     decoder_set_fb_fn,  // vpx_codec_set_fb_fn_t
660   },
661   { // NOLINT
662     0,
663     NULL,  // vpx_codec_enc_cfg_map_t
664     NULL,  // vpx_codec_encode_fn_t
665     NULL,  // vpx_codec_get_cx_data_fn_t
666     NULL,  // vpx_codec_enc_config_set_fn_t
667     NULL,  // vpx_codec_get_global_headers_fn_t
668     NULL,  // vpx_codec_get_preview_frame_fn_t
669     NULL   // vpx_codec_enc_mr_get_mem_loc_fn_t
670   }
671 };