view stream/stream_null.c @ 29635:c7d88fcfd784

Get rid of useless indirection and use the demuxer argument directly instead of ds->demuxer. This makes it also work again with -audiofile without having to add more hacks to demux_demuxers.
author reimar
date Mon, 14 Sep 2009 08:51:00 +0000
parents c1d17bd6683c
children ce0122361a39
line wrap: on
line source


#include "config.h"

#include <stdlib.h>
#include <string.h>

#include "stream.h"

static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
  stream->type = STREAMTYPE_DUMMY;

  return 1;
}


const stream_info_t stream_info_null = {
  "Null stream",
  "null",
  "Albeu",
  "",
  open_s,
  { "null", NULL },
  NULL,
  0 // Urls are an option string
};