Update copyright

This commit is contained in:
Mark Hills 2013-05-21 21:21:49 +01:00
parent 015bbd47aa
commit f68ec6eff2
4 changed files with 6 additions and 6 deletions

2
README
View File

@ -1,6 +1,6 @@
bpm-tools: Tempo (Beats Per Minute) analysis tools
(C) Copyright 2012 Mark Hills <mark@xwax.org>
(C) Copyright 2013 Mark Hills <mark@xwax.org>
See the COPYING file for licensing terms.

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# Copyright (C) 2012 Mark Hills <mark@xwax.org>
# Copyright (C) 2013 Mark Hills <mark@xwax.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# Copyright (C) 2012 Mark Hills <mark@xwax.org>
# Copyright (C) 2013 Mark Hills <mark@xwax.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@ -26,7 +26,7 @@ set -e
usage()
{
cat <<END
bpm-tag (C) Copyright 2012 Mark Hills <mark@xwax.org>
bpm-tag (C) Copyright 2013 Mark Hills <mark@xwax.org>
Usage: bpm-tag [options] <file>
Tag an audio file with tempo (in beats-per-minute, BPM)

4
bpm.c
View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012 Mark Hills <mark@xwax.org>
* Copyright (C) 2013 Mark Hills <mark@xwax.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -25,7 +25,7 @@
#include <sysexits.h>
#include <unistd.h>
#define BANNER "bpm (C) Copyright 2012 Mark Hills <mark@xwax.org>"
#define BANNER "bpm (C) Copyright 2013 Mark Hills <mark@xwax.org>"
#define NAME "bpm"
#define RATE 44100 /* of input data */