]> granicus.if.org Git - libvpx/blob - vp8/vp8_dx_iface.c
Merge "Silence -Werror=unused-parameter"
[libvpx] / vp8 / vp8_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
12 #include <stdlib.h>
13 #include <string.h>
14 #include "vp8_rtcd.h"
15 #include "vpx/vpx_decoder.h"
16 #include "vpx/vp8dx.h"
17 #include "vpx/internal/vpx_codec_internal.h"
18 #include "vpx_version.h"
19 #include "common/alloccommon.h"
20 #include "common/common.h"
21 #include "common/onyxd.h"
22 #include "decoder/onyxd_int.h"
23 #include "vpx_mem/vpx_mem.h"
24 #if CONFIG_ERROR_CONCEALMENT
25 #include "decoder/error_concealment.h"
26 #endif
27 #include "decoder/decoderthreading.h"
28
29 #define VP8_CAP_POSTPROC (CONFIG_POSTPROC ? VPX_CODEC_CAP_POSTPROC : 0)
30 #define VP8_CAP_ERROR_CONCEALMENT (CONFIG_ERROR_CONCEALMENT ? \
31                                     VPX_CODEC_CAP_ERROR_CONCEALMENT : 0)
32
33 typedef vpx_codec_stream_info_t  vp8_stream_info_t;
34
35 /* Structures for handling memory allocations */
36 typedef enum
37 {
38     VP8_SEG_ALG_PRIV     = 256,
39     VP8_SEG_MAX
40 } mem_seg_id_t;
41 #define NELEMENTS(x) ((int)(sizeof(x)/sizeof(x[0])))
42
43 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t);
44
45 struct vpx_codec_alg_priv
46 {
47     vpx_codec_priv_t        base;
48     vpx_codec_dec_cfg_t     cfg;
49     vp8_stream_info_t       si;
50     int                     decoder_init;
51     int                     postproc_cfg_set;
52     vp8_postproc_cfg_t      postproc_cfg;
53 #if CONFIG_POSTPROC_VISUALIZER
54     unsigned int            dbg_postproc_flag;
55     int                     dbg_color_ref_frame_flag;
56     int                     dbg_color_mb_modes_flag;
57     int                     dbg_color_b_modes_flag;
58     int                     dbg_display_mv_flag;
59 #endif
60     vpx_decrypt_cb          decrypt_cb;
61     void                    *decrypt_state;
62     vpx_image_t             img;
63     int                     img_setup;
64     struct frame_buffers    yv12_frame_buffers;
65     void                    *user_priv;
66     FRAGMENT_DATA           fragments;
67 };
68
69 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t flags)
70 {
71     /* Although this declaration is constant, we can't use it in the requested
72      * segments list because we want to define the requested segments list
73      * before defining the private type (so that the number of memory maps is
74      * known)
75      */
76     (void)si;
77     (void)flags;
78     return sizeof(vpx_codec_alg_priv_t);
79 }
80
81 static void vp8_init_ctx(vpx_codec_ctx_t *ctx)
82 {
83     vpx_codec_alg_priv_t *priv =
84         (vpx_codec_alg_priv_t *)vpx_calloc(1, sizeof(*priv));
85
86     ctx->priv = (vpx_codec_priv_t *)priv;
87     ctx->priv->init_flags = ctx->init_flags;
88
89     priv->si.sz = sizeof(priv->si);
90     priv->decrypt_cb = NULL;
91     priv->decrypt_state = NULL;
92
93     if (ctx->config.dec)
94     {
95         /* Update the reference to the config structure to an internal copy. */
96         priv->cfg = *ctx->config.dec;
97         ctx->config.dec = &priv->cfg;
98     }
99 }
100
101 static vpx_codec_err_t vp8_init(vpx_codec_ctx_t *ctx,
102                                 vpx_codec_priv_enc_mr_cfg_t *data)
103 {
104     vpx_codec_err_t res = VPX_CODEC_OK;
105     vpx_codec_alg_priv_t *priv = NULL;
106     (void) data;
107
108     vp8_rtcd();
109
110     /* This function only allocates space for the vpx_codec_alg_priv_t
111      * structure. More memory may be required at the time the stream
112      * information becomes known.
113      */
114     if (!ctx->priv) {
115       vp8_init_ctx(ctx);
116       priv = (vpx_codec_alg_priv_t *)ctx->priv;
117
118       /* initialize number of fragments to zero */
119       priv->fragments.count = 0;
120       /* is input fragments enabled? */
121       priv->fragments.enabled =
122           (priv->base.init_flags & VPX_CODEC_USE_INPUT_FRAGMENTS);
123
124       /*post processing level initialized to do nothing */
125     } else {
126       priv = (vpx_codec_alg_priv_t *)ctx->priv;
127     }
128
129     priv->yv12_frame_buffers.use_frame_threads =
130         (ctx->priv->init_flags & VPX_CODEC_USE_FRAME_THREADING);
131
132     /* for now, disable frame threading */
133     priv->yv12_frame_buffers.use_frame_threads = 0;
134
135     if (priv->yv12_frame_buffers.use_frame_threads &&
136         ((ctx->priv->init_flags & VPX_CODEC_USE_ERROR_CONCEALMENT) ||
137          (ctx->priv->init_flags & VPX_CODEC_USE_INPUT_FRAGMENTS))) {
138       /* row-based threading, error concealment, and input fragments will
139        * not be supported when using frame-based threading */
140       res = VPX_CODEC_INVALID_PARAM;
141     }
142
143     return res;
144 }
145
146 static vpx_codec_err_t vp8_destroy(vpx_codec_alg_priv_t *ctx)
147 {
148     vp8_remove_decoder_instances(&ctx->yv12_frame_buffers);
149
150     vpx_free(ctx);
151
152     return VPX_CODEC_OK;
153 }
154
155 static vpx_codec_err_t vp8_peek_si_internal(const uint8_t *data,
156                                             unsigned int data_sz,
157                                             vpx_codec_stream_info_t *si,
158                                             vpx_decrypt_cb decrypt_cb,
159                                             void *decrypt_state)
160 {
161     vpx_codec_err_t res = VPX_CODEC_OK;
162
163     if(data + data_sz <= data)
164     {
165         res = VPX_CODEC_INVALID_PARAM;
166     }
167     else
168     {
169         /* Parse uncompresssed part of key frame header.
170          * 3 bytes:- including version, frame type and an offset
171          * 3 bytes:- sync code (0x9d, 0x01, 0x2a)
172          * 4 bytes:- including image width and height in the lowest 14 bits
173          *           of each 2-byte value.
174          */
175         uint8_t clear_buffer[10];
176         const uint8_t *clear = data;
177         if (decrypt_cb)
178         {
179             int n = MIN(sizeof(clear_buffer), data_sz);
180             decrypt_cb(decrypt_state, data, clear_buffer, n);
181             clear = clear_buffer;
182         }
183         si->is_kf = 0;
184
185         if (data_sz >= 10 && !(clear[0] & 0x01))  /* I-Frame */
186         {
187             si->is_kf = 1;
188
189             /* vet via sync code */
190             if (clear[3] != 0x9d || clear[4] != 0x01 || clear[5] != 0x2a)
191                 res = VPX_CODEC_UNSUP_BITSTREAM;
192
193             si->w = (clear[6] | (clear[7] << 8)) & 0x3fff;
194             si->h = (clear[8] | (clear[9] << 8)) & 0x3fff;
195
196             /*printf("w=%d, h=%d\n", si->w, si->h);*/
197             if (!(si->h | si->w))
198                 res = VPX_CODEC_UNSUP_BITSTREAM;
199         }
200         else
201         {
202             res = VPX_CODEC_UNSUP_BITSTREAM;
203         }
204     }
205
206     return res;
207 }
208
209 static vpx_codec_err_t vp8_peek_si(const uint8_t *data,
210                                    unsigned int data_sz,
211                                    vpx_codec_stream_info_t *si) {
212     return vp8_peek_si_internal(data, data_sz, si, NULL, NULL);
213 }
214
215 static vpx_codec_err_t vp8_get_si(vpx_codec_alg_priv_t    *ctx,
216                                   vpx_codec_stream_info_t *si)
217 {
218
219     unsigned int sz;
220
221     if (si->sz >= sizeof(vp8_stream_info_t))
222         sz = sizeof(vp8_stream_info_t);
223     else
224         sz = sizeof(vpx_codec_stream_info_t);
225
226     memcpy(si, &ctx->si, sz);
227     si->sz = sz;
228
229     return VPX_CODEC_OK;
230 }
231
232
233 static vpx_codec_err_t
234 update_error_state(vpx_codec_alg_priv_t                 *ctx,
235                    const struct vpx_internal_error_info *error)
236 {
237     vpx_codec_err_t res;
238
239     if ((res = error->error_code))
240         ctx->base.err_detail = error->has_detail
241                                ? error->detail
242                                : NULL;
243
244     return res;
245 }
246
247 static void yuvconfig2image(vpx_image_t               *img,
248                             const YV12_BUFFER_CONFIG  *yv12,
249                             void                      *user_priv)
250 {
251     /** vpx_img_wrap() doesn't allow specifying independent strides for
252       * the Y, U, and V planes, nor other alignment adjustments that
253       * might be representable by a YV12_BUFFER_CONFIG, so we just
254       * initialize all the fields.*/
255     img->fmt = VPX_IMG_FMT_I420;
256     img->w = yv12->y_stride;
257     img->h = (yv12->y_height + 2 * VP8BORDERINPIXELS + 15) & ~15;
258     img->d_w = yv12->y_width;
259     img->d_h = yv12->y_height;
260     img->x_chroma_shift = 1;
261     img->y_chroma_shift = 1;
262     img->planes[VPX_PLANE_Y] = yv12->y_buffer;
263     img->planes[VPX_PLANE_U] = yv12->u_buffer;
264     img->planes[VPX_PLANE_V] = yv12->v_buffer;
265     img->planes[VPX_PLANE_ALPHA] = NULL;
266     img->stride[VPX_PLANE_Y] = yv12->y_stride;
267     img->stride[VPX_PLANE_U] = yv12->uv_stride;
268     img->stride[VPX_PLANE_V] = yv12->uv_stride;
269     img->stride[VPX_PLANE_ALPHA] = yv12->y_stride;
270     img->bit_depth = 8;
271     img->bps = 12;
272     img->user_priv = user_priv;
273     img->img_data = yv12->buffer_alloc;
274     img->img_data_owner = 0;
275     img->self_allocd = 0;
276 }
277
278 static int
279 update_fragments(vpx_codec_alg_priv_t  *ctx,
280                  const uint8_t         *data,
281                  unsigned int           data_sz,
282                  vpx_codec_err_t       *res)
283 {
284     *res = VPX_CODEC_OK;
285
286     if (ctx->fragments.count == 0)
287     {
288         /* New frame, reset fragment pointers and sizes */
289         vpx_memset((void*)ctx->fragments.ptrs, 0, sizeof(ctx->fragments.ptrs));
290         vpx_memset(ctx->fragments.sizes, 0, sizeof(ctx->fragments.sizes));
291     }
292     if (ctx->fragments.enabled && !(data == NULL && data_sz == 0))
293     {
294         /* Store a pointer to this fragment and return. We haven't
295          * received the complete frame yet, so we will wait with decoding.
296          */
297         ctx->fragments.ptrs[ctx->fragments.count] = data;
298         ctx->fragments.sizes[ctx->fragments.count] = data_sz;
299         ctx->fragments.count++;
300         if (ctx->fragments.count > (1 << EIGHT_PARTITION) + 1)
301         {
302             ctx->fragments.count = 0;
303             *res = VPX_CODEC_INVALID_PARAM;
304             return -1;
305         }
306         return 0;
307     }
308
309     if (!ctx->fragments.enabled && (data == NULL && data_sz == 0))
310     {
311         return 0;
312     }
313
314     if (!ctx->fragments.enabled)
315     {
316         ctx->fragments.ptrs[0] = data;
317         ctx->fragments.sizes[0] = data_sz;
318         ctx->fragments.count = 1;
319     }
320
321     return 1;
322 }
323
324 static vpx_codec_err_t vp8_decode(vpx_codec_alg_priv_t  *ctx,
325                                   const uint8_t         *data,
326                                   unsigned int            data_sz,
327                                   void                    *user_priv,
328                                   long                    deadline)
329 {
330     vpx_codec_err_t res = VPX_CODEC_OK;
331     unsigned int resolution_change = 0;
332     unsigned int w, h;
333
334     if (!ctx->fragments.enabled && (data == NULL && data_sz == 0))
335     {
336         return 0;
337     }
338
339     /* Update the input fragment data */
340     if(update_fragments(ctx, data, data_sz, &res) <= 0)
341         return res;
342
343     /* Determine the stream parameters. Note that we rely on peek_si to
344      * validate that we have a buffer that does not wrap around the top
345      * of the heap.
346      */
347     w = ctx->si.w;
348     h = ctx->si.h;
349
350     res = vp8_peek_si_internal(ctx->fragments.ptrs[0], ctx->fragments.sizes[0],
351                                &ctx->si, ctx->decrypt_cb, ctx->decrypt_state);
352
353     if((res == VPX_CODEC_UNSUP_BITSTREAM) && !ctx->si.is_kf)
354     {
355         /* the peek function returns an error for non keyframes, however for
356          * this case, it is not an error */
357         res = VPX_CODEC_OK;
358     }
359
360     if(!ctx->decoder_init && !ctx->si.is_kf)
361         res = VPX_CODEC_UNSUP_BITSTREAM;
362
363     if ((ctx->si.h != h) || (ctx->si.w != w))
364         resolution_change = 1;
365
366     /* Initialize the decoder instance on the first frame*/
367     if (!res && !ctx->decoder_init)
368     {
369       VP8D_CONFIG oxcf;
370
371       oxcf.Width = ctx->si.w;
372       oxcf.Height = ctx->si.h;
373       oxcf.Version = 9;
374       oxcf.postprocess = 0;
375       oxcf.max_threads = ctx->cfg.threads;
376       oxcf.error_concealment =
377           (ctx->base.init_flags & VPX_CODEC_USE_ERROR_CONCEALMENT);
378
379       /* If postprocessing was enabled by the application and a
380        * configuration has not been provided, default it.
381        */
382        if (!ctx->postproc_cfg_set
383            && (ctx->base.init_flags & VPX_CODEC_USE_POSTPROC)) {
384          ctx->postproc_cfg.post_proc_flag =
385              VP8_DEBLOCK | VP8_DEMACROBLOCK | VP8_MFQE;
386          ctx->postproc_cfg.deblocking_level = 4;
387          ctx->postproc_cfg.noise_level = 0;
388        }
389
390        res = vp8_create_decoder_instances(&ctx->yv12_frame_buffers, &oxcf);
391        ctx->decoder_init = 1;
392     }
393
394     /* Set these even if already initialized.  The caller may have changed the
395      * decrypt config between frames.
396      */
397     if (ctx->decoder_init) {
398       ctx->yv12_frame_buffers.pbi[0]->decrypt_cb = ctx->decrypt_cb;
399       ctx->yv12_frame_buffers.pbi[0]->decrypt_state = ctx->decrypt_state;
400     }
401
402     if (!res)
403     {
404         VP8D_COMP *pbi = ctx->yv12_frame_buffers.pbi[0];
405         if(resolution_change)
406         {
407             VP8_COMMON *const pc = & pbi->common;
408             MACROBLOCKD *const xd  = & pbi->mb;
409 #if CONFIG_MULTITHREAD
410             int i;
411 #endif
412             pc->Width = ctx->si.w;
413             pc->Height = ctx->si.h;
414             {
415                 int prev_mb_rows = pc->mb_rows;
416
417                 if (setjmp(pbi->common.error.jmp))
418                 {
419                     pbi->common.error.setjmp = 0;
420                     vp8_clear_system_state();
421                     /* same return value as used in vp8dx_receive_compressed_data */
422                     return -1;
423                 }
424
425                 pbi->common.error.setjmp = 1;
426
427                 if (pc->Width <= 0)
428                 {
429                     pc->Width = w;
430                     vpx_internal_error(&pc->error, VPX_CODEC_CORRUPT_FRAME,
431                                        "Invalid frame width");
432                 }
433
434                 if (pc->Height <= 0)
435                 {
436                     pc->Height = h;
437                     vpx_internal_error(&pc->error, VPX_CODEC_CORRUPT_FRAME,
438                                        "Invalid frame height");
439                 }
440
441                 if (vp8_alloc_frame_buffers(pc, pc->Width, pc->Height))
442                     vpx_internal_error(&pc->error, VPX_CODEC_MEM_ERROR,
443                                        "Failed to allocate frame buffers");
444
445                 xd->pre = pc->yv12_fb[pc->lst_fb_idx];
446                 xd->dst = pc->yv12_fb[pc->new_fb_idx];
447
448 #if CONFIG_MULTITHREAD
449                 for (i = 0; i < pbi->allocated_decoding_thread_count; i++)
450                 {
451                     pbi->mb_row_di[i].mbd.dst = pc->yv12_fb[pc->new_fb_idx];
452                     vp8_build_block_doffsets(&pbi->mb_row_di[i].mbd);
453                 }
454 #endif
455                 vp8_build_block_doffsets(&pbi->mb);
456
457                 /* allocate memory for last frame MODE_INFO array */
458 #if CONFIG_ERROR_CONCEALMENT
459
460                 if (pbi->ec_enabled)
461                 {
462                     /* old prev_mip was released by vp8_de_alloc_frame_buffers()
463                      * called in vp8_alloc_frame_buffers() */
464                     pc->prev_mip = vpx_calloc(
465                                        (pc->mb_cols + 1) * (pc->mb_rows + 1),
466                                        sizeof(MODE_INFO));
467
468                     if (!pc->prev_mip)
469                     {
470                         vp8_de_alloc_frame_buffers(pc);
471                         vpx_internal_error(&pc->error, VPX_CODEC_MEM_ERROR,
472                                            "Failed to allocate"
473                                            "last frame MODE_INFO array");
474                     }
475
476                     pc->prev_mi = pc->prev_mip + pc->mode_info_stride + 1;
477
478                     if (vp8_alloc_overlap_lists(pbi))
479                         vpx_internal_error(&pc->error, VPX_CODEC_MEM_ERROR,
480                                            "Failed to allocate overlap lists "
481                                            "for error concealment");
482                 }
483
484 #endif
485
486 #if CONFIG_MULTITHREAD
487                 if (pbi->b_multithreaded_rd)
488                     vp8mt_alloc_temp_buffers(pbi, pc->Width, prev_mb_rows);
489 #else
490                 (void)prev_mb_rows;
491 #endif
492             }
493
494             pbi->common.error.setjmp = 0;
495
496             /* required to get past the first get_free_fb() call */
497             pbi->common.fb_idx_ref_cnt[0] = 0;
498         }
499
500         /* update the pbi fragment data */
501         pbi->fragments = ctx->fragments;
502
503         ctx->user_priv = user_priv;
504         if (vp8dx_receive_compressed_data(pbi, data_sz, data, deadline))
505         {
506             res = update_error_state(ctx, &pbi->common.error);
507         }
508
509         /* get ready for the next series of fragments */
510         ctx->fragments.count = 0;
511     }
512
513     return res;
514 }
515
516 static vpx_image_t *vp8_get_frame(vpx_codec_alg_priv_t  *ctx,
517                                   vpx_codec_iter_t      *iter)
518 {
519     vpx_image_t *img = NULL;
520
521     /* iter acts as a flip flop, so an image is only returned on the first
522      * call to get_frame.
523      */
524     if (!(*iter) && ctx->yv12_frame_buffers.pbi[0])
525     {
526         YV12_BUFFER_CONFIG sd;
527         int64_t time_stamp = 0, time_end_stamp = 0;
528         vp8_ppflags_t flags = {0};
529
530         if (ctx->base.init_flags & VPX_CODEC_USE_POSTPROC)
531         {
532             flags.post_proc_flag= ctx->postproc_cfg.post_proc_flag
533 #if CONFIG_POSTPROC_VISUALIZER
534
535                                 | ((ctx->dbg_color_ref_frame_flag != 0) ? VP8D_DEBUG_CLR_FRM_REF_BLKS : 0)
536                                 | ((ctx->dbg_color_mb_modes_flag != 0) ? VP8D_DEBUG_CLR_BLK_MODES : 0)
537                                 | ((ctx->dbg_color_b_modes_flag != 0) ? VP8D_DEBUG_CLR_BLK_MODES : 0)
538                                 | ((ctx->dbg_display_mv_flag != 0) ? VP8D_DEBUG_DRAW_MV : 0)
539 #endif
540                                 ;
541             flags.deblocking_level      = ctx->postproc_cfg.deblocking_level;
542             flags.noise_level           = ctx->postproc_cfg.noise_level;
543 #if CONFIG_POSTPROC_VISUALIZER
544             flags.display_ref_frame_flag= ctx->dbg_color_ref_frame_flag;
545             flags.display_mb_modes_flag = ctx->dbg_color_mb_modes_flag;
546             flags.display_b_modes_flag  = ctx->dbg_color_b_modes_flag;
547             flags.display_mv_flag       = ctx->dbg_display_mv_flag;
548 #endif
549         }
550
551         if (0 == vp8dx_get_raw_frame(ctx->yv12_frame_buffers.pbi[0], &sd,
552                                      &time_stamp, &time_end_stamp, &flags))
553         {
554             yuvconfig2image(&ctx->img, &sd, ctx->user_priv);
555
556             img = &ctx->img;
557             *iter = img;
558         }
559     }
560
561     return img;
562 }
563
564 static vpx_codec_err_t image2yuvconfig(const vpx_image_t   *img,
565                                        YV12_BUFFER_CONFIG  *yv12)
566 {
567     const int y_w = img->d_w;
568     const int y_h = img->d_h;
569     const int uv_w = (img->d_w + 1) / 2;
570     const int uv_h = (img->d_h + 1) / 2;
571     vpx_codec_err_t        res = VPX_CODEC_OK;
572     yv12->y_buffer = img->planes[VPX_PLANE_Y];
573     yv12->u_buffer = img->planes[VPX_PLANE_U];
574     yv12->v_buffer = img->planes[VPX_PLANE_V];
575
576     yv12->y_crop_width  = y_w;
577     yv12->y_crop_height = y_h;
578     yv12->y_width  = y_w;
579     yv12->y_height = y_h;
580     yv12->uv_crop_width = uv_w;
581     yv12->uv_crop_height = uv_h;
582     yv12->uv_width = uv_w;
583     yv12->uv_height = uv_h;
584
585     yv12->y_stride = img->stride[VPX_PLANE_Y];
586     yv12->uv_stride = img->stride[VPX_PLANE_U];
587
588     yv12->border  = (img->stride[VPX_PLANE_Y] - img->d_w) / 2;
589     return res;
590 }
591
592
593 static vpx_codec_err_t vp8_set_reference(vpx_codec_alg_priv_t *ctx,
594                                          va_list args)
595 {
596
597     vpx_ref_frame_t *data = va_arg(args, vpx_ref_frame_t *);
598
599     if (data && !ctx->yv12_frame_buffers.use_frame_threads)
600     {
601         vpx_ref_frame_t *frame = (vpx_ref_frame_t *)data;
602         YV12_BUFFER_CONFIG sd;
603
604         image2yuvconfig(&frame->img, &sd);
605
606         return vp8dx_set_reference(ctx->yv12_frame_buffers.pbi[0],
607                                    frame->frame_type, &sd);
608     }
609     else
610         return VPX_CODEC_INVALID_PARAM;
611
612 }
613
614 static vpx_codec_err_t vp8_get_reference(vpx_codec_alg_priv_t *ctx,
615                                          va_list args)
616 {
617
618     vpx_ref_frame_t *data = va_arg(args, vpx_ref_frame_t *);
619
620     if (data && !ctx->yv12_frame_buffers.use_frame_threads)
621     {
622         vpx_ref_frame_t *frame = (vpx_ref_frame_t *)data;
623         YV12_BUFFER_CONFIG sd;
624
625         image2yuvconfig(&frame->img, &sd);
626
627         return vp8dx_get_reference(ctx->yv12_frame_buffers.pbi[0],
628                                    frame->frame_type, &sd);
629     }
630     else
631         return VPX_CODEC_INVALID_PARAM;
632
633 }
634
635 static vpx_codec_err_t vp8_set_postproc(vpx_codec_alg_priv_t *ctx,
636                                         va_list args)
637 {
638 #if CONFIG_POSTPROC
639     vp8_postproc_cfg_t *data = va_arg(args, vp8_postproc_cfg_t *);
640
641     if (data)
642     {
643         ctx->postproc_cfg_set = 1;
644         ctx->postproc_cfg = *((vp8_postproc_cfg_t *)data);
645         return VPX_CODEC_OK;
646     }
647     else
648         return VPX_CODEC_INVALID_PARAM;
649
650 #else
651     (void)ctx;
652     (void)args;
653     return VPX_CODEC_INCAPABLE;
654 #endif
655 }
656
657
658 static vpx_codec_err_t vp8_set_dbg_color_ref_frame(vpx_codec_alg_priv_t *ctx,
659                                                    va_list args) {
660 #if CONFIG_POSTPROC_VISUALIZER && CONFIG_POSTPROC
661   ctx->dbg_color_ref_frame_flag = va_arg(args, int);
662   return VPX_CODEC_OK;
663 #else
664   (void)ctx;
665   (void)args;
666   return VPX_CODEC_INCAPABLE;
667 #endif
668 }
669
670 static vpx_codec_err_t vp8_set_dbg_color_mb_modes(vpx_codec_alg_priv_t *ctx,
671                                                   va_list args) {
672 #if CONFIG_POSTPROC_VISUALIZER && CONFIG_POSTPROC
673   ctx->dbg_color_mb_modes_flag = va_arg(args, int);
674   return VPX_CODEC_OK;
675 #else
676   (void)ctx;
677   (void)args;
678   return VPX_CODEC_INCAPABLE;
679 #endif
680 }
681
682 static vpx_codec_err_t vp8_set_dbg_color_b_modes(vpx_codec_alg_priv_t *ctx,
683                                                  va_list args) {
684 #if CONFIG_POSTPROC_VISUALIZER && CONFIG_POSTPROC
685   ctx->dbg_color_b_modes_flag = va_arg(args, int);
686   return VPX_CODEC_OK;
687 #else
688   (void)ctx;
689   (void)args;
690   return VPX_CODEC_INCAPABLE;
691 #endif
692 }
693
694 static vpx_codec_err_t vp8_set_dbg_display_mv(vpx_codec_alg_priv_t *ctx,
695                                               va_list args) {
696 #if CONFIG_POSTPROC_VISUALIZER && CONFIG_POSTPROC
697   ctx->dbg_display_mv_flag = va_arg(args, int);
698   return VPX_CODEC_OK;
699 #else
700   (void)ctx;
701   (void)args;
702   return VPX_CODEC_INCAPABLE;
703 #endif
704 }
705
706 static vpx_codec_err_t vp8_get_last_ref_updates(vpx_codec_alg_priv_t *ctx,
707                                                 va_list args)
708 {
709     int *update_info = va_arg(args, int *);
710
711     if (update_info && !ctx->yv12_frame_buffers.use_frame_threads)
712     {
713         VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0];
714
715         *update_info = pbi->common.refresh_alt_ref_frame * (int) VP8_ALTR_FRAME
716             + pbi->common.refresh_golden_frame * (int) VP8_GOLD_FRAME
717             + pbi->common.refresh_last_frame * (int) VP8_LAST_FRAME;
718
719         return VPX_CODEC_OK;
720     }
721     else
722         return VPX_CODEC_INVALID_PARAM;
723 }
724
725 extern int vp8dx_references_buffer( VP8_COMMON *oci, int ref_frame );
726 static vpx_codec_err_t vp8_get_last_ref_frame(vpx_codec_alg_priv_t *ctx,
727                                               va_list args)
728 {
729     int *ref_info = va_arg(args, int *);
730
731     if (ref_info && !ctx->yv12_frame_buffers.use_frame_threads)
732     {
733         VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0];
734         VP8_COMMON *oci = &pbi->common;
735         *ref_info =
736             (vp8dx_references_buffer( oci, ALTREF_FRAME )?VP8_ALTR_FRAME:0) |
737             (vp8dx_references_buffer( oci, GOLDEN_FRAME )?VP8_GOLD_FRAME:0) |
738             (vp8dx_references_buffer( oci, LAST_FRAME )?VP8_LAST_FRAME:0);
739
740         return VPX_CODEC_OK;
741     }
742     else
743         return VPX_CODEC_INVALID_PARAM;
744 }
745
746 static vpx_codec_err_t vp8_get_frame_corrupted(vpx_codec_alg_priv_t *ctx,
747                                                va_list args)
748 {
749
750     int *corrupted = va_arg(args, int *);
751     VP8D_COMP *pbi = (VP8D_COMP *)ctx->yv12_frame_buffers.pbi[0];
752
753     if (corrupted && pbi)
754     {
755         const YV12_BUFFER_CONFIG *const frame = pbi->common.frame_to_show;
756         if (frame == NULL) return VPX_CODEC_ERROR;
757         *corrupted = frame->corrupted;
758         return VPX_CODEC_OK;
759     }
760     else
761         return VPX_CODEC_INVALID_PARAM;
762
763 }
764
765 static vpx_codec_err_t vp8_set_decryptor(vpx_codec_alg_priv_t *ctx,
766                                          va_list args)
767 {
768     vpx_decrypt_init *init = va_arg(args, vpx_decrypt_init *);
769
770     if (init)
771     {
772         ctx->decrypt_cb = init->decrypt_cb;
773         ctx->decrypt_state = init->decrypt_state;
774     }
775     else
776     {
777         ctx->decrypt_cb = NULL;
778         ctx->decrypt_state = NULL;
779     }
780     return VPX_CODEC_OK;
781 }
782
783 vpx_codec_ctrl_fn_map_t vp8_ctf_maps[] =
784 {
785     {VP8_SET_REFERENCE,             vp8_set_reference},
786     {VP8_COPY_REFERENCE,            vp8_get_reference},
787     {VP8_SET_POSTPROC,              vp8_set_postproc},
788     {VP8_SET_DBG_COLOR_REF_FRAME,   vp8_set_dbg_color_ref_frame},
789     {VP8_SET_DBG_COLOR_MB_MODES,    vp8_set_dbg_color_mb_modes},
790     {VP8_SET_DBG_COLOR_B_MODES,     vp8_set_dbg_color_b_modes},
791     {VP8_SET_DBG_DISPLAY_MV,        vp8_set_dbg_display_mv},
792     {VP8D_GET_LAST_REF_UPDATES,     vp8_get_last_ref_updates},
793     {VP8D_GET_FRAME_CORRUPTED,      vp8_get_frame_corrupted},
794     {VP8D_GET_LAST_REF_USED,        vp8_get_last_ref_frame},
795     {VPXD_SET_DECRYPTOR,            vp8_set_decryptor},
796     { -1, NULL},
797 };
798
799
800 #ifndef VERSION_STRING
801 #define VERSION_STRING
802 #endif
803 CODEC_INTERFACE(vpx_codec_vp8_dx) =
804 {
805     "WebM Project VP8 Decoder" VERSION_STRING,
806     VPX_CODEC_INTERNAL_ABI_VERSION,
807     VPX_CODEC_CAP_DECODER | VP8_CAP_POSTPROC | VP8_CAP_ERROR_CONCEALMENT |
808     VPX_CODEC_CAP_INPUT_FRAGMENTS,
809     /* vpx_codec_caps_t          caps; */
810     vp8_init,         /* vpx_codec_init_fn_t       init; */
811     vp8_destroy,      /* vpx_codec_destroy_fn_t    destroy; */
812     vp8_ctf_maps,     /* vpx_codec_ctrl_fn_map_t  *ctrl_maps; */
813     {
814         vp8_peek_si,      /* vpx_codec_peek_si_fn_t    peek_si; */
815         vp8_get_si,       /* vpx_codec_get_si_fn_t     get_si; */
816         vp8_decode,       /* vpx_codec_decode_fn_t     decode; */
817         vp8_get_frame,    /* vpx_codec_frame_get_fn_t  frame_get; */
818         NULL,
819     },
820     { /* encoder functions */
821         0,
822         NULL,
823         NULL,
824         NULL,
825         NULL,
826         NULL,
827         NULL
828     }
829 };