chromium/third_party/libvpx/source/libvpx/vp9/decoder/vp9_job_queue.c

/*
 *  Copyright (c) 2018 The WebM project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include <assert.h>
#include <string.h>

#include "vpx/vpx_integer.h"
#include "vpx_util/vpx_pthread.h"

#include "vp9/decoder/vp9_job_queue.h"

void vp9_jobq_init(JobQueueRowMt *jobq, uint8_t *buf, size_t buf_size) {}

void vp9_jobq_reset(JobQueueRowMt *jobq) {}

void vp9_jobq_deinit(JobQueueRowMt *jobq) {}

void vp9_jobq_terminate(JobQueueRowMt *jobq) {}

int vp9_jobq_queue(JobQueueRowMt *jobq, void *job, size_t job_size) {}

int vp9_jobq_dequeue(JobQueueRowMt *jobq, void *job, size_t job_size,
                     int blocking) {}