mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
consistent include usage
Originally committed as revision 598 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3093185ea6
commit
2ef0f2b269
@ -24,6 +24,8 @@
|
|||||||
#ifndef A52_H
|
#ifndef A52_H
|
||||||
#define A52_H
|
#define A52_H
|
||||||
|
|
||||||
|
#include "../avcodec.h"
|
||||||
|
|
||||||
#ifndef LIBA52_DOUBLE
|
#ifndef LIBA52_DOUBLE
|
||||||
typedef float sample_t;
|
typedef float sample_t;
|
||||||
#else
|
#else
|
||||||
|
@ -20,11 +20,6 @@
|
|||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include "a52.h"
|
#include "a52.h"
|
||||||
#include "a52_internal.h"
|
#include "a52_internal.h"
|
||||||
|
|
||||||
|
@ -21,10 +21,6 @@
|
|||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include "a52.h"
|
#include "a52.h"
|
||||||
#include "a52_internal.h"
|
#include "a52_internal.h"
|
||||||
#include "bitstream.h"
|
#include "bitstream.h"
|
||||||
|
@ -21,11 +21,6 @@
|
|||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include "a52.h"
|
#include "a52.h"
|
||||||
#include "a52_internal.h"
|
#include "a52_internal.h"
|
||||||
|
|
||||||
|
@ -24,18 +24,6 @@
|
|||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <math.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#ifdef LIBA52_DJBFFT
|
|
||||||
#include <fftc4.h>
|
|
||||||
#endif
|
|
||||||
#ifndef M_PI
|
|
||||||
#define M_PI 3.1415926535897932384626433832795029
|
|
||||||
#endif
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include "a52.h"
|
#include "a52.h"
|
||||||
#include "a52_internal.h"
|
#include "a52_internal.h"
|
||||||
#include "mm_accel.h"
|
#include "mm_accel.h"
|
||||||
|
@ -21,12 +21,6 @@
|
|||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include "a52.h"
|
#include "a52.h"
|
||||||
#include "a52_internal.h"
|
#include "a52_internal.h"
|
||||||
#include "bitstream.h"
|
#include "bitstream.h"
|
||||||
|
@ -1,27 +1,24 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at>
|
* Rate control for video encoders
|
||||||
|
*
|
||||||
This program is free software; you can redistribute it and/or modify
|
* Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
|
||||||
it under the terms of the GNU General Public License as published by
|
*
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
* This library is free software; you can redistribute it and/or
|
||||||
(at your option) any later version.
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
This program is distributed in the hope that it will be useful,
|
* version 2 of the License, or (at your option) any later version.
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
*
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* This library is distributed in the hope that it will be useful,
|
||||||
GNU General Public License for more details.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
You should have received a copy of the GNU General Public License
|
* Lesser General Public License for more details.
|
||||||
along with this program; if not, write to the Free Software
|
*
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
*/
|
* License along with this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#include <inttypes.h>
|
*/
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#include "common.h" //needed for mpegvideo.h to compile
|
|
||||||
#include "dsputil.h" //needed for mpegvideo.h to compile
|
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
|
#include "dsputil.h"
|
||||||
#include "mpegvideo.h"
|
#include "mpegvideo.h"
|
||||||
|
|
||||||
#define STATS_FILE "lavc_stats.txt"
|
#define STATS_FILE "lavc_stats.txt"
|
||||||
|
Loading…
Reference in New Issue
Block a user