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