Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 209490 | Differences between
and this patch

Collapse All | Expand All

(-)src/lib/ContentDirectory/FileDetails.cpp (-2 / +2 lines)
Lines 43-50 Link Here
43
#ifdef HAVE_LIBAVFORMAT
43
#ifdef HAVE_LIBAVFORMAT
44
extern "C"
44
extern "C"
45
{ 
45
{ 
46
  #include <avformat.h>
46
  #include <libavformat/avformat.h>
47
  #include <avcodec.h>
47
  #include <libavcodec/avcodec.h>
48
}
48
}
49
#endif
49
#endif
50
50
(-)src/lib/libmain.cpp (-2 / +2 lines)
Lines 49-56 Link Here
49
#ifdef HAVE_LIBAVFORMAT
49
#ifdef HAVE_LIBAVFORMAT
50
extern "C"
50
extern "C"
51
{ 
51
{ 
52
  #include <avformat.h>
52
  #include <libavformat/avformat.h>
53
  #include <avcodec.h>
53
  #include <libavcodec/avcodec.h>
54
}
54
}
55
#endif
55
#endif
56
56
(-)src/lib/Transcoding/ffmpeg/ffmpeg.h (-10 / +10 lines)
Lines 32-56 Link Here
32
#include "../../../config.h"
32
#include "../../../config.h"
33
#endif
33
#endif
34
34
35
#ifdef __cplusplus 
35
#ifdef __cplusplus
36
extern "C" 
36
extern "C"
37
{  
37
{
38
  #include <ctype.h>
38
  #include <ctype.h>
39
  #include <string.h>
39
  #include <string.h>
40
  #include <avformat.h>
40
  #include <libavformat/avformat.h>
41
	#include <avutil.h>
41
  #include <libavutil/avutil.h>
42
  #include <fifo.h> 
42
  #include <libavutil/fifo.h> 
43
#ifdef HAVE_LIBSWSCALE
43
#ifdef HAVE_LIBSWSCALE
44
  #include <swscale.h>
44
  #include <libswscale/swscale.h>
45
#endif
45
#endif
46
  #include <math.h>
46
  #include <math.h>
47
  #include <stdlib.h>
47
  #include <stdlib.h>
48
  #include <limits.h>
48
  #include <limits.h>
49
  #include <opt.h>
49
  #include <libavcodec/opt.h>
50
  //#include <mem.h>
50
  //#include <mem.h>
51
  
51
52
  #ifdef HAVE_AVSTRING_H
52
  #ifdef HAVE_AVSTRING_H
53
  #include <avstring.h>
53
  #include <libavutil/avstring.h>
54
  #endif
54
  #endif
55
} 
55
} 
56
#endif // __cplusplus 
56
#endif // __cplusplus 
(-)src/lib/Transcoding/ffmpeg/cmdutils.cpp (-2 / +2 lines)
Lines 29-35 Link Here
29
#include <stdlib.h>
29
#include <stdlib.h>
30
#include <errno.h>
30
#include <errno.h>
31
31
32
#include "avformat.h"
32
#include "libavformat/avformat.h"
33
#include "cmdutils.h"
33
#include "cmdutils.h"
34
34
35
#ifdef HAVE_CONFIG_H
35
#ifdef HAVE_CONFIG_H
Lines 37-43 Link Here
37
#endif
37
#endif
38
38
39
#ifdef HAVE_AVSTRING_H
39
#ifdef HAVE_AVSTRING_H
40
#include "avstring.h"
40
#include "libavutil/avstring.h"
41
#endif
41
#endif
42
42
43
#include "ffmpeg.h"
43
#include "ffmpeg.h"

Return to bug 209490