linux/drivers/media/usb/hdpvr/hdpvr-control.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Hauppauge HD PVR USB driver - video 4 linux 2 interface
 *
 * Copyright (C) 2008      Janne Grunau ([email protected])
 */

#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/usb.h>
#include <linux/mutex.h>

#include <linux/videodev2.h>

#include <media/v4l2-common.h>

#include "hdpvr.h"


int hdpvr_config_call(struct hdpvr_device *dev, uint value, u8 valbuf)
{}

int get_video_info(struct hdpvr_device *dev, struct hdpvr_video_info *vidinf)
{}

int get_input_lines_info(struct hdpvr_device *dev)
{}


int hdpvr_set_bitrate(struct hdpvr_device *dev)
{}

int hdpvr_set_audio(struct hdpvr_device *dev, u8 input,
		    enum v4l2_mpeg_audio_encoding codec)
{}

int hdpvr_set_options(struct hdpvr_device *dev)
{}