!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-6.8-headers-6.8.0-1028/include/sound/   drwxr-xr-x
Free 83.34 GB of 96.73 GB (86.16%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     sdw.h (1.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0
 *
 * linux/sound/sdw.h -- SoundWire helpers for ALSA/ASoC
 *
 * Copyright (c) 2022 Cirrus Logic Inc.
 *
 * Author: Charles Keepax <[email protected]>
 */

#include <linux/soundwire/sdw.h>
#include <sound/asound.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>

#ifndef __INCLUDE_SOUND_SDW_H
#define __INCLUDE_SOUND_SDW_H

/**
 * snd_sdw_params_to_config() - Conversion from hw_params to SoundWire config
 *
 * @substream: Pointer to the PCM substream structure
 * @params: Pointer to the hardware params structure
 * @stream_config: Stream configuration for the SoundWire audio stream
 * @port_config: Port configuration for the SoundWire audio stream
 *
 * This function provides a basic conversion from the hw_params structure to
 * SoundWire configuration structures. The user will at a minimum need to also
 * set the port number in the port config, but may also override more of the
 * setup, or in the case of a complex user, not use this helper at all and
 * open-code everything.
 */
static inline void snd_sdw_params_to_config(struct snd_pcm_substream *substream,
                        struct snd_pcm_hw_params *params,
                        struct sdw_stream_config *stream_config,
                        struct sdw_port_config *port_config)
{
    stream_config->frame_rate = params_rate(params);
    stream_config->ch_count = params_channels(params);
    stream_config->bps = snd_pcm_format_width(params_format(params));

    if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
        stream_config->direction = SDW_DATA_DIR_RX;
    else
        stream_config->direction = SDW_DATA_DIR_TX;

    port_config->ch_mask = GENMASK(stream_config->ch_count - 1, 0);
}

#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0033 ]--