mirror of
				https://git.ffmpeg.org/ffmpeg.git
				synced 2025-11-03 17:20:56 +00:00 
			
		
		
		
	Drop unnecessary directory prefixes from #include directives.
This commit is contained in:
		
							parent
							
								
									b9c6c7cb25
								
							
						
					
					
						commit
						dc25d79f49
					
				
					 11 changed files with 18 additions and 16 deletions
				
			
		| 
						 | 
					@ -29,7 +29,7 @@
 | 
				
			||||||
#include "libavcodec/aac_tables.h"
 | 
					#include "libavcodec/aac_tables.h"
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
#include "libavutil/mathematics.h"
 | 
					#include "libavutil/mathematics.h"
 | 
				
			||||||
#include "libavcodec/aac.h"
 | 
					#include "aac.h"
 | 
				
			||||||
float ff_aac_pow2sf_tab[428];
 | 
					float ff_aac_pow2sf_tab[428];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void ff_aac_tableinit(void)
 | 
					void ff_aac_tableinit(void)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -25,8 +25,9 @@
 | 
				
			||||||
#define AVCODEC_DNXHDENC_H
 | 
					#define AVCODEC_DNXHDENC_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
#include "libavcodec/mpegvideo.h"
 | 
					
 | 
				
			||||||
#include "libavcodec/dnxhddata.h"
 | 
					#include "mpegvideo.h"
 | 
				
			||||||
 | 
					#include "dnxhddata.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    uint16_t mb;
 | 
					    uint16_t mb;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,8 +19,8 @@
 | 
				
			||||||
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
					 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "libavcodec/mlp.h"
 | 
					 | 
				
			||||||
#include "dsputil.h"
 | 
					#include "dsputil.h"
 | 
				
			||||||
 | 
					#include "mlp.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void ff_mlp_filter_channel(int32_t *state, const int32_t *coeff,
 | 
					static void ff_mlp_filter_channel(int32_t *state, const int32_t *coeff,
 | 
				
			||||||
                                  int firorder, int iirorder,
 | 
					                                  int firorder, int iirorder,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -22,7 +22,7 @@
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "avcodec.h"
 | 
					#include "avcodec.h"
 | 
				
			||||||
#include "libavcodec/bytestream.h"
 | 
					#include "bytestream.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static av_cold int encode_init(AVCodecContext *avctx)
 | 
					static av_cold int encode_init(AVCodecContext *avctx)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -28,7 +28,7 @@
 | 
				
			||||||
#include <string.h>
 | 
					#include <string.h>
 | 
				
			||||||
#include "libavutil/intreadwrite.h"
 | 
					#include "libavutil/intreadwrite.h"
 | 
				
			||||||
#include "libavutil/avstring.h"
 | 
					#include "libavutil/avstring.h"
 | 
				
			||||||
#include "libavformat/internal.h"
 | 
					#include "internal.h"
 | 
				
			||||||
#include "mms.h"
 | 
					#include "mms.h"
 | 
				
			||||||
#include "asf.h"
 | 
					#include "asf.h"
 | 
				
			||||||
#include "http.h"
 | 
					#include "http.h"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -23,8 +23,8 @@
 | 
				
			||||||
 * audio conversion routines
 | 
					 * audio conversion routines
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "libavutil/avutil.h"
 | 
					#include "avstring.h"
 | 
				
			||||||
#include "libavutil/avstring.h"
 | 
					#include "avutil.h"
 | 
				
			||||||
#include "audioconvert.h"
 | 
					#include "audioconvert.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const char * const channel_names[] = {
 | 
					static const char * const channel_names[] = {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -26,7 +26,7 @@
 | 
				
			||||||
 * see http://joe.hotchkiss.com/programming/eval/eval.html
 | 
					 * see http://joe.hotchkiss.com/programming/eval/eval.html
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "libavutil/avutil.h"
 | 
					#include "avutil.h"
 | 
				
			||||||
#include "eval.h"
 | 
					#include "eval.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct Parser {
 | 
					typedef struct Parser {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -23,7 +23,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "imgutils.h"
 | 
					#include "imgutils.h"
 | 
				
			||||||
#include "internal.h"
 | 
					#include "internal.h"
 | 
				
			||||||
#include "libavutil/pixdesc.h"
 | 
					#include "pixdesc.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void av_image_fill_max_pixsteps(int max_pixsteps[4], int max_pixstep_comps[4],
 | 
					void av_image_fill_max_pixsteps(int max_pixsteps[4], int max_pixstep_comps[4],
 | 
				
			||||||
                                const AVPixFmtDescriptor *pixdesc)
 | 
					                                const AVPixFmtDescriptor *pixdesc)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -24,8 +24,8 @@
 | 
				
			||||||
 * misc image utilities
 | 
					 * misc image utilities
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "libavutil/pixdesc.h"
 | 
					 | 
				
			||||||
#include "avutil.h"
 | 
					#include "avutil.h"
 | 
				
			||||||
 | 
					#include "pixdesc.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * Compute the max pixel step for each plane of an image with a
 | 
					 * Compute the max pixel step for each plane of an image with a
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -24,11 +24,12 @@
 | 
				
			||||||
#include <strings.h>
 | 
					#include <strings.h>
 | 
				
			||||||
#include <sys/time.h>
 | 
					#include <sys/time.h>
 | 
				
			||||||
#include <time.h>
 | 
					#include <time.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "avstring.h"
 | 
				
			||||||
 | 
					#include "avutil.h"
 | 
				
			||||||
 | 
					#include "eval.h"
 | 
				
			||||||
 | 
					#include "random_seed.h"
 | 
				
			||||||
#include "parseutils.h"
 | 
					#include "parseutils.h"
 | 
				
			||||||
#include "libavutil/avutil.h"
 | 
					 | 
				
			||||||
#include "libavutil/eval.h"
 | 
					 | 
				
			||||||
#include "libavutil/avstring.h"
 | 
					 | 
				
			||||||
#include "libavutil/random_seed.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    const char *abbr;
 | 
					    const char *abbr;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,7 +19,7 @@
 | 
				
			||||||
#ifndef AVUTIL_PARSEUTILS_H
 | 
					#ifndef AVUTIL_PARSEUTILS_H
 | 
				
			||||||
#define AVUTIL_PARSEUTILS_H
 | 
					#define AVUTIL_PARSEUTILS_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "libavutil/rational.h"
 | 
					#include "rational.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * @file
 | 
					 * @file
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue