shithub: sox

ref: 102680a2e873b56498108a6851e84c06c46ad61a
dir: /src/nulfile.c/

View raw version
/*
 * July 5, 1991
 * Copyright 1991 Lance Norskog And Sundry Contributors
 * This source code is freely redistributable and may be used for
 * any purpose.  This copyright notice must be maintained. 
 * Lance Norskog And Sundry Contributors are not responsible for 
 * the consequences of using this software.
 */

/*
 * Sound Tools nul file format driver.
 * Written by Carsten Borchardt 
 * The author is not responsible for the consequences 
 * of using this software
 */

#include "st_i.h"

/* No private data needed for nul file */
 
/*
 * Do anything required before you start reading samples.
 * Read file header. 
 *      Find out sampling rate, 
 *      size and encoding of samples, 
 *      mono/stereo/quad.
 */
int st_nulstartread(ft_t ft) 
{
    /* If format parameters are not given, set defaults: */
    if (ft->info.rate     ==  0) ft->info.rate     = 44100;
    if (ft->info.size     == -1) ft->info.size     = ST_SIZE_WORD;
    if (ft->info.encoding == -1) ft->info.encoding = ST_ENCODING_SIGN2;
    if (ft->info.channels == -1) ft->info.channels = 2;

    ft->comment = "nul file";

    return (ST_SUCCESS);
}

/*
 * Read up to len samples, we read always '0'
 * Convert to signed longs.
 * Place in buf[].
 * Return number of samples read.
 */

st_ssize_t st_nulread(ft_t ft, st_sample_t *buf, st_ssize_t len) 
{
    st_ssize_t done = 0;
    for(; done < len; done++)
    {
        buf[done] = 0;
    }
    return done;
}

/*
 * Do anything required when you stop reading samples.  
 * Don't close input file! 
 * .. nothing to be done
 */
int st_nulstopread(ft_t ft) 
{ 
    return (ST_SUCCESS);
}

int st_nulstartwrite(ft_t ft) 
{
    return(ST_SUCCESS);
}

st_ssize_t st_nulwrite(ft_t ft, const st_sample_t *buf, st_ssize_t len) 
{
    return len;    
}

int st_nulstopwrite(ft_t ft) 
{
    /* nothing to do */
    return (ST_SUCCESS);
}

static const char *nulnames[] = {
  "nul",
  NULL,
};

static st_format_t st_nul_format = {
  nulnames,
  NULL,
  ST_FILE_STEREO | ST_FILE_NOSTDIO,
  st_nulstartread,
  st_nulread,
  st_nulstopread,
  st_nulstartwrite,
  st_nulwrite,
  st_nulstopwrite,
  st_format_nothing_seek
};

const st_format_t *st_nul_format_fn(void)
{
    return &st_nul_format;
}