mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 13:35:19 +00:00
Merge branch 'master' of gitlab.com:peter-iakovlev/telegram-ios
This commit is contained in:
commit
ad5b0c3a6a
@ -1,6 +1,6 @@
|
||||
#import <FFMpegBinding/FFMpegAVCodec.h>
|
||||
|
||||
#import <third_party/ffmpeg/libavcodec/avcodec.h>
|
||||
#import "libavcodec/avcodec.h"
|
||||
|
||||
@interface FFMpegAVCodec () {
|
||||
AVCodec const *_impl;
|
||||
|
@ -3,8 +3,8 @@
|
||||
#import <FFMpegBinding/FFMpegAVFrame.h>
|
||||
#import <FFMpegBinding/FFMpegAVCodec.h>
|
||||
|
||||
#import <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#import <third_party/ffmpeg/libavcodec/avcodec.h>
|
||||
#import "libavformat/avformat.h"
|
||||
#import "libavcodec/avcodec.h"
|
||||
|
||||
static enum AVPixelFormat getPreferredPixelFormat(__unused AVCodecContext *ctx, __unused const enum AVPixelFormat *pix_fmts) {
|
||||
return AV_PIX_FMT_VIDEOTOOLBOX;
|
||||
|
@ -4,8 +4,8 @@
|
||||
#import <FFMpegBinding/FFMpegPacket.h>
|
||||
#import <FFMpegBinding/FFMpegAVCodecContext.h>
|
||||
|
||||
#import <third_party/ffmpeg/libavcodec/avcodec.h>
|
||||
#import <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#import "libavcodec/avcodec.h"
|
||||
#import "libavformat/avformat.h"
|
||||
|
||||
int FFMpegCodecIdH264 = AV_CODEC_ID_H264;
|
||||
int FFMpegCodecIdHEVC = AV_CODEC_ID_HEVC;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#import <FFMpegBinding/FFMpegAVFrame.h>
|
||||
|
||||
#import <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#import "libavformat/avformat.h"
|
||||
|
||||
@interface FFMpegAVFrame () {
|
||||
AVFrame *_impl;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#import <FFMpegBinding/FFMpegAVIOContext.h>
|
||||
|
||||
#import <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#import "libavformat/avformat.h"
|
||||
|
||||
int FFMPEG_CONSTANT_AVERROR_EOF = AVERROR_EOF;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#import <FFMpegBinding/FFMpegGlobals.h>
|
||||
|
||||
#import <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#import "libavformat/avformat.h"
|
||||
|
||||
@implementation FFMpegGlobals
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
#import <FFMpegBinding/FFMpegLiveMuxer.h>
|
||||
#import <FFMpegBinding/FFMpegAVIOContext.h>
|
||||
|
||||
#include <third_party/ffmpeg/libavutil/timestamp.h>
|
||||
#include <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#include <third_party/ffmpeg/libavcodec/avcodec.h>
|
||||
#include <third_party/ffmpeg/libswresample/swresample.h>
|
||||
#include "libavutil/timestamp.h"
|
||||
#include "libavformat/avformat.h">"
|
||||
#include "libavcodec/avcodec.h">"
|
||||
#include "libswresample/swresample.h"
|
||||
|
||||
#define MOV_TIMESCALE 1000
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
#import <FFMpegBinding/FFMpegAVCodecContext.h>
|
||||
|
||||
#import <third_party/ffmpeg/libavcodec/avcodec.h>
|
||||
#import <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#import "libavcodec/avcodec.h"
|
||||
#import "libavformat/avformat.h"
|
||||
|
||||
@interface FFMpegPacket () {
|
||||
AVPacket *_impl;
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
#import <FFMpegBinding/FFMpegAVIOContext.h>
|
||||
|
||||
#include <third_party/ffmpeg/libavutil/timestamp.h>
|
||||
#include <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#include <third_party/ffmpeg/libavcodec/avcodec.h>
|
||||
#include "libavutil/timestamp.h"
|
||||
#include "libavformat/avformat.h"
|
||||
#include "libavcodec/avcodec.h"
|
||||
|
||||
#define MOV_TIMESCALE 1000
|
||||
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
#import <FFMpegBinding/FFMpegAVFrame.h>
|
||||
|
||||
#import <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#import <third_party/ffmpeg/libavcodec/avcodec.h>
|
||||
#import <third_party/ffmpeg/libswresample/swresample.h>
|
||||
#import "libavformat/avformat.h"
|
||||
#import "libavcodec/avcodec.h"
|
||||
#import "libswresample/swresample.h"
|
||||
|
||||
@interface FFMpegSWResample () {
|
||||
int _sourceSampleRate;
|
||||
|
@ -1,9 +1,9 @@
|
||||
#import <FFMpegBinding/FFMpegVideoWriter.h>
|
||||
#import <FFMpegBinding/FFMpegAVFrame.h>
|
||||
|
||||
#include <third_party/ffmpeg/libavformat/avformat.h>
|
||||
#include <third_party/ffmpeg/libavcodec/avcodec.h>
|
||||
#include <third_party/ffmpeg/libavutil/imgutils.h>
|
||||
#include "libavformat/avformat.h"
|
||||
#include "libavcodec/avcodec.h"
|
||||
#include "libavutil/imgutils.h"
|
||||
|
||||
@interface FFMpegVideoWriter ()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user