Skip to content

Commit 1f43a83

Browse files
committed
revert ffmpeg headers
1 parent dd22272 commit 1f43a83

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

submodules/FFMpegBinding/Sources/FFMpegAVCodec.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import <FFMpegBinding/FFMpegAVCodec.h>
22

3-
#import <third_party/ffmpeg/libavcodec/avcodec.h>
3+
#import "libavcodec/avcodec.h"
44

55
@interface FFMpegAVCodec () {
66
AVCodec const *_impl;

submodules/FFMpegBinding/Sources/FFMpegAVCodecContext.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#import <FFMpegBinding/FFMpegAVFrame.h>
44
#import <FFMpegBinding/FFMpegAVCodec.h>
55

6-
#import <third_party/ffmpeg/libavformat/avformat.h>
7-
#import <third_party/ffmpeg/libavcodec/avcodec.h>
6+
#import "libavformat/avformat.h"
7+
#import "libavcodec/avcodec.h"
88

99
static enum AVPixelFormat getPreferredPixelFormat(__unused AVCodecContext *ctx, __unused const enum AVPixelFormat *pix_fmts) {
1010
return AV_PIX_FMT_VIDEOTOOLBOX;

submodules/FFMpegBinding/Sources/FFMpegAVFormatContext.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#import <FFMpegBinding/FFMpegPacket.h>
55
#import <FFMpegBinding/FFMpegAVCodecContext.h>
66

7-
#import <third_party/ffmpeg/libavcodec/avcodec.h>
8-
#import <third_party/ffmpeg/libavformat/avformat.h>
7+
#import "libavcodec/avcodec.h"
8+
#import "libavformat/avformat.h"
99

1010
int FFMpegCodecIdH264 = AV_CODEC_ID_H264;
1111
int FFMpegCodecIdHEVC = AV_CODEC_ID_HEVC;

submodules/FFMpegBinding/Sources/FFMpegAVFrame.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import <FFMpegBinding/FFMpegAVFrame.h>
22

3-
#import <third_party/ffmpeg/libavformat/avformat.h>
3+
#import "libavformat/avformat.h"
44

55
@interface FFMpegAVFrame () {
66
AVFrame *_impl;

submodules/FFMpegBinding/Sources/FFMpegAVIOContext.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import <FFMpegBinding/FFMpegAVIOContext.h>
22

3-
#import <third_party/ffmpeg/libavformat/avformat.h>
3+
#import "libavformat/avformat.h"
44

55
int FFMPEG_CONSTANT_AVERROR_EOF = AVERROR_EOF;
66

submodules/FFMpegBinding/Sources/FFMpegGlobals.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import <FFMpegBinding/FFMpegGlobals.h>
22

3-
#import <third_party/ffmpeg/libavformat/avformat.h>
3+
#import "libavformat/avformat.h"
44

55
@implementation FFMpegGlobals
66

submodules/FFMpegBinding/Sources/FFMpegLiveMuxer.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#import <FFMpegBinding/FFMpegLiveMuxer.h>
22
#import <FFMpegBinding/FFMpegAVIOContext.h>
33

4-
#include <third_party/ffmpeg/libavutil/timestamp.h>
5-
#include <third_party/ffmpeg/libavformat/avformat.h>
6-
#include <third_party/ffmpeg/libavcodec/avcodec.h>
7-
#include <third_party/ffmpeg/libswresample/swresample.h>
4+
#include "libavutil/timestamp.h"
5+
#include "libavformat/avformat.h">"
6+
#include "libavcodec/avcodec.h">"
7+
#include "libswresample/swresample.h"
88

99
#define MOV_TIMESCALE 1000
1010

submodules/FFMpegBinding/Sources/FFMpegPacket.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#import <FFMpegBinding/FFMpegAVCodecContext.h>
44

5-
#import <third_party/ffmpeg/libavcodec/avcodec.h>
6-
#import <third_party/ffmpeg/libavformat/avformat.h>
5+
#import "libavcodec/avcodec.h"
6+
#import "libavformat/avformat.h"
77

88
@interface FFMpegPacket () {
99
AVPacket *_impl;

submodules/FFMpegBinding/Sources/FFMpegRemuxer.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
#import <FFMpegBinding/FFMpegAVIOContext.h>
44

5-
#include <third_party/ffmpeg/libavutil/timestamp.h>
6-
#include <third_party/ffmpeg/libavformat/avformat.h>
7-
#include <third_party/ffmpeg/libavcodec/avcodec.h>
5+
#include "libavutil/timestamp.h"
6+
#include "libavformat/avformat.h"
7+
#include "libavcodec/avcodec.h"
88

99
#define MOV_TIMESCALE 1000
1010

submodules/FFMpegBinding/Sources/FFMpegSWResample.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
#import <FFMpegBinding/FFMpegAVFrame.h>
44

5-
#import <third_party/ffmpeg/libavformat/avformat.h>
6-
#import <third_party/ffmpeg/libavcodec/avcodec.h>
7-
#import <third_party/ffmpeg/libswresample/swresample.h>
5+
#import "libavformat/avformat.h"
6+
#import "libavcodec/avcodec.h"
7+
#import "libswresample/swresample.h"
88

99
@interface FFMpegSWResample () {
1010
int _sourceSampleRate;

0 commit comments

Comments
 (0)