summarylogtreecommitdiffstats
path: root/cinelerra-cv-ffmpeg4.patch
diff options
context:
space:
mode:
authorFabioLolix2021-03-01 15:13:18 +0100
committerFabioLolix2021-03-01 15:13:18 +0100
commitec0a1a132c051f5079e2edff84327dabd2e949b9 (patch)
tree68139536c519e1e591eb730e6363ee3d85aa64d6 /cinelerra-cv-ffmpeg4.patch
parent280bc9f2217c050f43440f3552da7ef8f2cc1fa0 (diff)
downloadaur-cinelerra-cv.tar.gz
fix build and pkgver
Diffstat (limited to 'cinelerra-cv-ffmpeg4.patch')
-rw-r--r--cinelerra-cv-ffmpeg4.patch82
1 files changed, 0 insertions, 82 deletions
diff --git a/cinelerra-cv-ffmpeg4.patch b/cinelerra-cv-ffmpeg4.patch
deleted file mode 100644
index 8104dc1e6710..000000000000
--- a/cinelerra-cv-ffmpeg4.patch
+++ /dev/null
@@ -1,82 +0,0 @@
-Index: CinelerraCV-2.3/quicktime/mpeg4.c
-===================================================================
---- CinelerraCV-2.3.orig/quicktime/mpeg4.c
-+++ CinelerraCV-2.3/quicktime/mpeg4.c
-@@ -625,7 +625,6 @@ static int encode(quicktime_t *file, uns
- else
- // ffmpeg section
- {
-- static char *video_rc_eq="tex^qComp";
- codec->encode_initialized[current_field] = 1;
- if(!ffmpeg_initialized)
- {
-@@ -650,7 +649,6 @@ static int encode(quicktime_t *file, uns
- context->pix_fmt = AV_PIX_FMT_YUV420P;
- context->bit_rate = codec->bitrate / codec->total_fields;
- context->bit_rate_tolerance = codec->bitrate_tolerance;
-- context->rc_eq = video_rc_eq;
- context->rc_max_rate = 0;
- context->rc_min_rate = 0;
- context->rc_buffer_size = 0;
-@@ -658,8 +656,6 @@ static int encode(quicktime_t *file, uns
- (!codec->fix_bitrate ? codec->quantizer : 2);
- context->qmax =
- (!codec->fix_bitrate ? codec->quantizer : 31);
-- context->lmin = 2 * FF_QP2LAMBDA;
-- context->lmax = 31 * FF_QP2LAMBDA;
- context->mb_lmin = 2 * FF_QP2LAMBDA;
- context->mb_lmax = 31 * FF_QP2LAMBDA;
- context->max_qdiff = 3;
-@@ -680,8 +676,6 @@ static int encode(quicktime_t *file, uns
- context->frame_skip_cmp = FF_CMP_DCTMAX;
- context->ildct_cmp = FF_CMP_VSAD;
- context->intra_dc_precision = 0;
-- context->intra_quant_bias = FF_DEFAULT_QUANT_BIAS;
-- context->inter_quant_bias = FF_DEFAULT_QUANT_BIAS;
- context->i_quant_factor = -0.8;
- context->i_quant_offset = 0.0;
- context->mb_decision = FF_MB_DECISION_SIMPLE;
-@@ -689,17 +683,13 @@ static int encode(quicktime_t *file, uns
- context->me_sub_cmp = FF_CMP_SAD;
- context->me_cmp = FF_CMP_SAD;
- context->me_pre_cmp = FF_CMP_SAD;
-- context->me_method = ME_EPZS;
- context->me_subpel_quality = 8;
- context->me_penalty_compensation = 256;
- context->me_range = 0;
-- context->me_threshold = 0;
-- context->mb_threshold = 0;
- context->nsse_weight= 8;
- context->profile= FF_PROFILE_UNKNOWN;
-- context->rc_buffer_aggressivity = 1.0;
- context->level= FF_LEVEL_UNKNOWN;
-- context->flags |= CODEC_FLAG_AC_PRED;
-+ context->flags |= AV_CODEC_FLAG_AC_PRED;
-
- // All the forbidden settings can be extracted from libavcodec/mpegvideo.c of ffmpeg...
-
-@@ -709,7 +699,7 @@ static int encode(quicktime_t *file, uns
- codec->ffmpeg_id == AV_CODEC_ID_H263 ||
- codec->ffmpeg_id == AV_CODEC_ID_H263P ||
- codec->ffmpeg_id == AV_CODEC_ID_FLV1)
-- context->flags |= CODEC_FLAG_4MV;
-+ context->flags |= AV_CODEC_FLAG_4MV;
- // Not compatible with Win
- // context->flags |= CODEC_FLAG_QPEL;
-
-@@ -723,12 +713,12 @@ static int encode(quicktime_t *file, uns
- }
-
- if(!codec->fix_bitrate)
-- context->flags |= CODEC_FLAG_QSCALE;
-+ context->flags |= AV_CODEC_FLAG_QSCALE;
-
- if(codec->interlaced)
- {
-- context->flags |= CODEC_FLAG_INTERLACED_DCT;
-- context->flags |= CODEC_FLAG_INTERLACED_ME;
-+ context->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
-+ context->flags |= AV_CODEC_FLAG_INTERLACED_ME;
- }
-
-