mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
multimedia/libquicktime: unbreak with ffmpeg 4.0
audio.c:549:37: error: use of undeclared identifier 'FF_INPUT_BUFFER_PADDING_SIZE' codec->pkt.size = packet_size + FF_INPUT_BUFFER_PADDING_SIZE; ^ PR: 227726 Reported by: antoine (via exp-run) Obtained from: Gentoo
This commit is contained in:
parent
dd28efb6db
commit
b9351d7eb5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=468938
@ -92,7 +92,6 @@ CONFIGURE_ARGS+= --without-libpng
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MFFMPEG}
|
||||
BROKEN= fails to build with ffmpeg 4.0
|
||||
LIB_DEPENDS+= libavcodec.so:multimedia/ffmpeg
|
||||
CONFIGURE_ARGS+= --with-ffmpeg
|
||||
.else
|
||||
|
307
multimedia/libquicktime/files/patch-z-ffmpeg4
Normal file
307
multimedia/libquicktime/files/patch-z-ffmpeg4
Normal file
@ -0,0 +1,307 @@
|
||||
https://gitweb.gentoo.org/repo/gentoo.git/tree/media-libs/libquicktime/files/libquicktime-1.2.4-ffmpeg4.patch?id=3060f60f2983
|
||||
|
||||
--- plugins/ffmpeg/audio.c.orig
|
||||
+++ plugins/ffmpeg/audio.c
|
||||
@@ -546,7 +546,7 @@ static int decode_chunk_vbr(quicktime_t * file, int track)
|
||||
|
||||
#if DECODE_AUDIO3 || DECODE_AUDIO4
|
||||
codec->pkt.data = codec->chunk_buffer;
|
||||
- codec->pkt.size = packet_size + FF_INPUT_BUFFER_PADDING_SIZE;
|
||||
+ codec->pkt.size = packet_size + AV_INPUT_BUFFER_PADDING_SIZE;
|
||||
|
||||
#if DECODE_AUDIO4
|
||||
frame_bytes = avcodec_decode_audio4(codec->avctx, &f,
|
||||
@@ -584,7 +584,7 @@ static int decode_chunk_vbr(quicktime_t * file, int track)
|
||||
(codec->sample_buffer_end - codec->sample_buffer_start)],
|
||||
&bytes_decoded,
|
||||
codec->chunk_buffer,
|
||||
- packet_size + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
+ packet_size + AV_INPUT_BUFFER_PADDING_SIZE);
|
||||
if(frame_bytes < 0)
|
||||
{
|
||||
lqt_log(file, LQT_LOG_ERROR, LOG_DOMAIN, "avcodec_decode_audio2 error");
|
||||
@@ -646,13 +646,13 @@ static int decode_chunk(quicktime_t * file, int track)
|
||||
return 0;
|
||||
}
|
||||
|
||||
- if(codec->chunk_buffer_alloc < mph.frame_bytes + FF_INPUT_BUFFER_PADDING_SIZE)
|
||||
+ if(codec->chunk_buffer_alloc < mph.frame_bytes + AV_INPUT_BUFFER_PADDING_SIZE)
|
||||
{
|
||||
- codec->chunk_buffer_alloc = mph.frame_bytes + FF_INPUT_BUFFER_PADDING_SIZE;
|
||||
+ codec->chunk_buffer_alloc = mph.frame_bytes + AV_INPUT_BUFFER_PADDING_SIZE;
|
||||
codec->chunk_buffer = realloc(codec->chunk_buffer, codec->chunk_buffer_alloc);
|
||||
}
|
||||
memset(codec->chunk_buffer + codec->bytes_in_chunk_buffer, 0,
|
||||
- mph.frame_bytes - codec->bytes_in_chunk_buffer + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
+ mph.frame_bytes - codec->bytes_in_chunk_buffer + AV_INPUT_BUFFER_PADDING_SIZE);
|
||||
num_samples = mph.samples_per_frame;
|
||||
codec->bytes_in_chunk_buffer = mph.frame_bytes;
|
||||
}
|
||||
@@ -696,7 +696,7 @@ static int decode_chunk(quicktime_t * file, int track)
|
||||
{
|
||||
|
||||
|
||||
- /* BIG NOTE: We pass extra FF_INPUT_BUFFER_PADDING_SIZE for the buffer size
|
||||
+ /* BIG NOTE: We pass extra AV_INPUT_BUFFER_PADDING_SIZE for the buffer size
|
||||
because we know, that lqt_read_audio_chunk allocates 16 extra bytes for us */
|
||||
|
||||
/* Some really broken mp3 files have the header bytes split across 2 chunks */
|
||||
@@ -762,7 +762,7 @@ static int decode_chunk(quicktime_t * file, int track)
|
||||
|
||||
#if DECODE_AUDIO3 || DECODE_AUDIO4
|
||||
codec->pkt.data = &codec->chunk_buffer[bytes_used];
|
||||
- codec->pkt.size = codec->bytes_in_chunk_buffer + FF_INPUT_BUFFER_PADDING_SIZE;
|
||||
+ codec->pkt.size = codec->bytes_in_chunk_buffer + AV_INPUT_BUFFER_PADDING_SIZE;
|
||||
|
||||
#if DECODE_AUDIO4
|
||||
|
||||
@@ -799,7 +799,7 @@ static int decode_chunk(quicktime_t * file, int track)
|
||||
(codec->sample_buffer_end - codec->sample_buffer_start)],
|
||||
&bytes_decoded,
|
||||
&codec->chunk_buffer[bytes_used],
|
||||
- codec->bytes_in_chunk_buffer + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
+ codec->bytes_in_chunk_buffer + AV_INPUT_BUFFER_PADDING_SIZE);
|
||||
#endif
|
||||
if(frame_bytes < 0)
|
||||
{
|
||||
@@ -839,7 +839,7 @@ static int decode_chunk(quicktime_t * file, int track)
|
||||
}
|
||||
}
|
||||
|
||||
- /* This happens because ffmpeg adds FF_INPUT_BUFFER_PADDING_SIZE to the bytes returned */
|
||||
+ /* This happens because ffmpeg adds AV_INPUT_BUFFER_PADDING_SIZE to the bytes returned */
|
||||
|
||||
if(codec->bytes_in_chunk_buffer < 0)
|
||||
codec->bytes_in_chunk_buffer = 0;
|
||||
--- plugins/ffmpeg/params.c.orig
|
||||
+++ plugins/ffmpeg/params.c
|
||||
@@ -113,16 +113,6 @@ typedef struct
|
||||
}
|
||||
|
||||
|
||||
-enum_t me_method[] =
|
||||
- {
|
||||
- { "Zero", ME_ZERO },
|
||||
- { "Phods", ME_PHODS },
|
||||
- { "Log", ME_LOG },
|
||||
- { "X1", ME_X1 },
|
||||
- { "Epzs", ME_EPZS },
|
||||
- { "Full", ME_FULL }
|
||||
- };
|
||||
-
|
||||
enum_t prediction_method[] =
|
||||
{
|
||||
{ "Left", FF_PRED_LEFT },
|
||||
@@ -152,14 +142,6 @@ enum_t mb_decision[] =
|
||||
{ "Rate distoration", FF_MB_DECISION_RD }
|
||||
};
|
||||
|
||||
-enum_t coder_type[] =
|
||||
- {
|
||||
- { "VLC", FF_CODER_TYPE_VLC },
|
||||
- { "Arithmetic", FF_CODER_TYPE_AC },
|
||||
- { "Raw", FF_CODER_TYPE_RAW },
|
||||
- { "RLE", FF_CODER_TYPE_RLE },
|
||||
- };
|
||||
-
|
||||
#define PARAM_ENUM(name, var, arr) \
|
||||
if(!strcasecmp(key, name)) \
|
||||
{ \
|
||||
@@ -191,7 +173,7 @@ void lqt_ffmpeg_set_parameter(AVCodecContext * ctx,
|
||||
PARAM_INT_SCALE("ff_bit_rate_audio",bit_rate,1000);
|
||||
PARAM_INT_SCALE("ff_bit_rate_video",bit_rate,1000);
|
||||
PARAM_INT_SCALE("ff_bit_rate_tolerance",bit_rate_tolerance,1000);
|
||||
- PARAM_ENUM("ff_me_method",me_method,me_method);
|
||||
+ PARAM_DICT_INT("ff_me_method","motion-est");
|
||||
PARAM_INT("ff_gop_size",gop_size);
|
||||
PARAM_FLOAT("ff_qcompress",qcompress);
|
||||
PARAM_FLOAT("ff_qblur",qblur);
|
||||
@@ -208,10 +190,9 @@ void lqt_ffmpeg_set_parameter(AVCodecContext * ctx,
|
||||
PARAM_INT("ff_rc_min_rate",rc_min_rate);
|
||||
PARAM_INT("ff_rc_max_rate",rc_max_rate);
|
||||
PARAM_INT_SCALE("ff_rc_buffer_size",rc_buffer_size,1000);
|
||||
- PARAM_FLOAT("ff_rc_buffer_aggressivity",rc_buffer_aggressivity);
|
||||
PARAM_FLOAT("ff_i_quant_factor",i_quant_factor);
|
||||
PARAM_QP2LAMBDA("ff_i_quant_offset",i_quant_offset);
|
||||
- PARAM_FLOAT("ff_rc_initial_cplx",rc_initial_cplx);
|
||||
+ PARAM_DICT_INT("ff_rc_initial_cplx","rc_init_cplx");
|
||||
PARAM_FLOAT("ff_lumi_masking",lumi_masking);
|
||||
PARAM_FLOAT("ff_temporal_cplx_masking",temporal_cplx_masking);
|
||||
PARAM_FLOAT("ff_spatial_cplx_masking",spatial_cplx_masking);
|
||||
@@ -236,38 +217,36 @@ void lqt_ffmpeg_set_parameter(AVCodecContext * ctx,
|
||||
PARAM_INT("ff_me_range",me_range);
|
||||
PARAM_ENUM("ff_mb_decision",mb_decision,mb_decision);
|
||||
PARAM_INT("ff_scenechange_threshold",scenechange_threshold);
|
||||
- PARAM_QP2LAMBDA("ff_lmin", lmin);
|
||||
- PARAM_QP2LAMBDA("ff_lmax", lmax);
|
||||
+ PARAM_DICT_INT("ff_lmin", "lmin");
|
||||
+ PARAM_DICT_INT("ff_lmax", "lmax");
|
||||
PARAM_INT("ff_noise_reduction",noise_reduction);
|
||||
PARAM_INT_SCALE("ff_rc_initial_buffer_occupancy",rc_initial_buffer_occupancy,1000);
|
||||
/* PARAM_INT("ff_inter_threshold",inter_threshold); */
|
||||
/* PARAM_INT("ff_quantizer_noise_shaping",quantizer_noise_shaping); */
|
||||
PARAM_INT("ff_thread_count",thread_count);
|
||||
- PARAM_INT("ff_me_threshold",me_threshold);
|
||||
- PARAM_INT("ff_mb_threshold",mb_threshold);
|
||||
PARAM_INT("ff_nsse_weight",nsse_weight);
|
||||
- PARAM_FLOAT("ff_border_masking",border_masking);
|
||||
+ PARAM_DICT_INT("ff_border_masking","border_mask");
|
||||
PARAM_QP2LAMBDA("ff_mb_lmin", mb_lmin);
|
||||
PARAM_QP2LAMBDA("ff_mb_lmax", mb_lmax);
|
||||
PARAM_INT("ff_me_penalty_compensation",me_penalty_compensation);
|
||||
PARAM_INT("ff_bidir_refine",bidir_refine);
|
||||
PARAM_INT("ff_brd_scale",brd_scale);
|
||||
- PARAM_FLAG("ff_flag_qscale",CODEC_FLAG_QSCALE);
|
||||
- PARAM_FLAG("ff_flag_4mv",CODEC_FLAG_4MV);
|
||||
- PARAM_FLAG("ff_flag_qpel",CODEC_FLAG_QPEL);
|
||||
+ PARAM_FLAG("ff_flag_qscale",AV_CODEC_FLAG_QSCALE);
|
||||
+ PARAM_FLAG("ff_flag_4mv",AV_CODEC_FLAG_4MV);
|
||||
+ PARAM_FLAG("ff_flag_qpel",AV_CODEC_FLAG_QPEL);
|
||||
PARAM_DICT_FLAG("ff_flag_gmc", "gmc");
|
||||
- PARAM_FLAG("ff_flag_mv0",CODEC_FLAG_MV0);
|
||||
+ PARAM_DICT_FLAG("ff_flag_mv0","mpv_flags");
|
||||
// PARAM_FLAG("ff_flag_part",CODEC_FLAG_PART); // Unused
|
||||
- PARAM_FLAG("ff_flag_gray",CODEC_FLAG_GRAY);
|
||||
- PARAM_FLAG("ff_flag_normalize_aqp",CODEC_FLAG_NORMALIZE_AQP);
|
||||
+ PARAM_FLAG("ff_flag_gray",AV_CODEC_FLAG_GRAY);
|
||||
+ PARAM_DICT_FLAG("ff_flag_normalize_aqp","naq");
|
||||
// PARAM_FLAG("ff_flag_alt_scan",CODEC_FLAG_ALT_SCAN); // Unused
|
||||
#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
PARAM_FLAG("ff_flag_trellis_quant",CODEC_FLAG_TRELLIS_QUANT);
|
||||
#else
|
||||
PARAM_INT("ff_trellis",trellis);
|
||||
#endif
|
||||
- PARAM_FLAG("ff_flag_bitexact",CODEC_FLAG_BITEXACT);
|
||||
- PARAM_FLAG("ff_flag_ac_pred",CODEC_FLAG_AC_PRED);
|
||||
+ PARAM_FLAG("ff_flag_bitexact",AV_CODEC_FLAG_BITEXACT);
|
||||
+ PARAM_FLAG("ff_flag_ac_pred",AV_CODEC_FLAG_AC_PRED);
|
||||
// PARAM_FLAG("ff_flag_h263p_umv",CODEC_FLAG_H263P_UMV); // Unused
|
||||
/* PARAM_FLAG("ff_flag_cbp_rd",CODEC_FLAG_CBP_RD); */
|
||||
/* PARAM_FLAG("ff_flag_qp_rd",CODEC_FLAG_QP_RD); */
|
||||
@@ -277,15 +256,15 @@ void lqt_ffmpeg_set_parameter(AVCodecContext * ctx,
|
||||
PARAM_DICT_FLAG("ff_flag_obmc","obmc");
|
||||
PARAM_DICT_FLAG("ff_flag_h263p_slice_struct","structured_slices");
|
||||
#else
|
||||
- PARAM_FLAG("ff_flag_h263p_aiv",CODEC_FLAG_H263P_AIV);
|
||||
- PARAM_FLAG("ff_flag_obmc",CODEC_FLAG_OBMC);
|
||||
- PARAM_FLAG("ff_flag_h263p_slice_struct",CODEC_FLAG_H263P_SLICE_STRUCT);
|
||||
+ PARAM_FLAG("ff_flag_h263p_aiv",AV_CODEC_FLAG_H263P_AIV);
|
||||
+ PARAM_FLAG("ff_flag_obmc",AV_CODEC_FLAG_OBMC);
|
||||
+ PARAM_FLAG("ff_flag_h263p_slice_struct",AV_CODEC_FLAG_H263P_SLICE_STRUCT);
|
||||
#endif
|
||||
|
||||
- PARAM_FLAG("ff_flag_loop_filter",CODEC_FLAG_LOOP_FILTER);
|
||||
- PARAM_FLAG("ff_flag_closed_gop",CODEC_FLAG_CLOSED_GOP);
|
||||
- PARAM_FLAG2("ff_flag2_fast",CODEC_FLAG2_FAST);
|
||||
+ PARAM_FLAG("ff_flag_loop_filter",AV_CODEC_FLAG_LOOP_FILTER);
|
||||
+ PARAM_FLAG("ff_flag_closed_gop",AV_CODEC_FLAG_CLOSED_GOP);
|
||||
+ PARAM_FLAG2("ff_flag2_fast",AV_CODEC_FLAG2_FAST);
|
||||
/* PARAM_FLAG2("ff_flag2_strict_gop",CODEC_FLAG2_STRICT_GOP); */
|
||||
- PARAM_ENUM("ff_coder_type",coder_type,coder_type);
|
||||
+ PARAM_DICT_INT("ff_coder_type","coder");
|
||||
|
||||
}
|
||||
--- plugins/ffmpeg/video.c.orig
|
||||
+++ plugins/ffmpeg/video.c
|
||||
@@ -781,7 +781,7 @@ static int lqt_ffmpeg_decode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
if(extradata)
|
||||
{
|
||||
codec->extradata =
|
||||
- calloc(1, extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
+ calloc(1, extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
|
||||
memcpy(codec->extradata, extradata, extradata_size);
|
||||
codec->avctx->extradata_size = extradata_size;
|
||||
codec->avctx->extradata = codec->extradata;
|
||||
@@ -1140,8 +1140,8 @@ static int init_imx_encoder(quicktime_t *file, int track)
|
||||
codec->avctx->qmin = 1;
|
||||
codec->avctx->qmax = 3;
|
||||
codec->avctx->rtp_payload_size = 1; // ??
|
||||
- codec->avctx->rc_buffer_aggressivity = 0.25;
|
||||
- codec->avctx->flags |= CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_LOW_DELAY;
|
||||
+ av_dict_set(&codec->options, "rc_buf_aggressivity", "0.25", 0);
|
||||
+ codec->avctx->flags |= AV_CODEC_FLAG_INTERLACED_DCT|AV_CODEC_FLAG_LOW_DELAY;
|
||||
|
||||
#if (LIBAVCODEC_VERSION_MAJOR < 54)
|
||||
codec->avctx->flags2 |= CODEC_FLAG2_INTRA_VLC|CODEC_FLAG2_NON_LINEAR_QUANT;
|
||||
@@ -1328,7 +1328,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
// codec->avctx->time_base.den = 1;
|
||||
// codec->avctx->time_base.num = lqt_video_time_scale(file, track);
|
||||
|
||||
- if(codec->avctx->flags & CODEC_FLAG_QSCALE)
|
||||
+ if(codec->avctx->flags & AV_CODEC_FLAG_QSCALE)
|
||||
codec->avctx->global_quality = codec->qscale;
|
||||
|
||||
codec->avctx->width = width;
|
||||
@@ -1344,7 +1344,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
{
|
||||
if(!(file->file_type & (LQT_FILE_AVI|LQT_FILE_AVI_ODML)))
|
||||
{
|
||||
- codec->avctx->flags |= CODEC_FLAG_GLOBAL_HEADER;
|
||||
+ codec->avctx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
|
||||
codec->write_global_header = 1;
|
||||
}
|
||||
|
||||
@@ -1360,7 +1360,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
{
|
||||
lqt_log(file, LQT_LOG_INFO, LOG_DOMAIN, "Enabling interlaced encoding");
|
||||
codec->avctx->flags |=
|
||||
- (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME|CODEC_FLAG_ALT_SCAN);
|
||||
+ (AV_CODEC_FLAG_INTERLACED_DCT|AV_CODEC_FLAG_INTERLACED_ME|AV_CODEC_FLAG_ALT_SCAN);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@@ -1387,7 +1387,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
{
|
||||
if(!(file->file_type & (LQT_FILE_AVI|LQT_FILE_AVI_ODML)))
|
||||
{
|
||||
- codec->avctx->flags |= CODEC_FLAG_GLOBAL_HEADER;
|
||||
+ codec->avctx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
|
||||
codec->write_global_header = 1;
|
||||
}
|
||||
}
|
||||
@@ -1410,7 +1410,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
{
|
||||
if(vtrack->interlace_mode != LQT_INTERLACE_NONE)
|
||||
{
|
||||
- codec->avctx->flags |= CODEC_FLAG_INTERLACED_DCT;
|
||||
+ codec->avctx->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
|
||||
}
|
||||
}
|
||||
else if(codec->is_imx)
|
||||
@@ -1422,7 +1422,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
if(codec->pass == 1)
|
||||
{
|
||||
codec->stats_file = fopen(codec->stats_filename, "w");
|
||||
- codec->avctx->flags |= CODEC_FLAG_PASS1;
|
||||
+ codec->avctx->flags |= AV_CODEC_FLAG_PASS1;
|
||||
}
|
||||
else if(codec->pass == codec->total_passes)
|
||||
{
|
||||
@@ -1438,7 +1438,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
fclose(codec->stats_file);
|
||||
codec->stats_file = (FILE*)0;
|
||||
|
||||
- codec->avctx->flags |= CODEC_FLAG_PASS2;
|
||||
+ codec->avctx->flags |= AV_CODEC_FLAG_PASS2;
|
||||
}
|
||||
}
|
||||
/* Open codec */
|
||||
@@ -1516,7 +1516,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
}
|
||||
|
||||
codec->frame->pts = vtrack->timestamp;
|
||||
- if(codec->avctx->flags & CODEC_FLAG_QSCALE)
|
||||
+ if(codec->avctx->flags & AV_CODEC_FLAG_QSCALE)
|
||||
codec->frame->quality = codec->qscale;
|
||||
#ifdef DO_INTERLACE
|
||||
if(vtrack->interlace_mode != LQT_INTERLACE_NONE)
|
||||
@@ -1599,8 +1599,7 @@ static int lqt_ffmpeg_encode_video(quicktime_t *file, unsigned char **row_pointe
|
||||
else if(codec->encoder->id == AV_CODEC_ID_MPEG4)
|
||||
{
|
||||
int advanced = 0;
|
||||
- if(codec->avctx->max_b_frames ||
|
||||
- (codec->avctx->flags & (AV_CODEC_FLAG_QPEL|CODEC_FLAG_GMC)))
|
||||
+ if(codec->avctx->max_b_frames)
|
||||
advanced = 1;
|
||||
|
||||
setup_header_mpeg4(file, track, codec->avctx->extradata,
|
Loading…
Reference in New Issue
Block a user