mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-12 17:50:00 +00:00
lavf: postpone removal of FF_API_COMPUTE_PKT_FIELDS2
The infrastructure to fully handle generating timestamps e.g. for raw video streamcopy is still not present.
This commit is contained in:
parent
9168a1c0e6
commit
270ddc2baf
@ -541,7 +541,7 @@ fail:
|
|||||||
#define AV_PKT_FLAG_UNCODED_FRAME 0x2000
|
#define AV_PKT_FLAG_UNCODED_FRAME 0x2000
|
||||||
|
|
||||||
|
|
||||||
#if FF_API_COMPUTE_PKT_FIELDS2 && FF_API_LAVF_AVCTX
|
#if FF_API_COMPUTE_PKT_FIELDS2
|
||||||
FF_DISABLE_DEPRECATION_WARNINGS
|
FF_DISABLE_DEPRECATION_WARNINGS
|
||||||
//FIXME merge with compute_pkt_fields
|
//FIXME merge with compute_pkt_fields
|
||||||
static int compute_muxer_pkt_fields(AVFormatContext *s, AVStream *st, AVPacket *pkt)
|
static int compute_muxer_pkt_fields(AVFormatContext *s, AVStream *st, AVPacket *pkt)
|
||||||
@ -621,7 +621,7 @@ static int compute_muxer_pkt_fields(AVFormatContext *s, AVStream *st, AVPacket *
|
|||||||
case AVMEDIA_TYPE_AUDIO:
|
case AVMEDIA_TYPE_AUDIO:
|
||||||
frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
|
frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
|
||||||
(*(AVFrame **)pkt->data)->nb_samples :
|
(*(AVFrame **)pkt->data)->nb_samples :
|
||||||
av_get_audio_frame_duration(st->codec, pkt->size);
|
av_get_audio_frame_duration2(st->codecpar, pkt->size);
|
||||||
|
|
||||||
/* HACK/FIXME, we skip the initial 0 size packets as they are most
|
/* HACK/FIXME, we skip the initial 0 size packets as they are most
|
||||||
* likely equal to the encoder delay, but it would be better if we
|
* likely equal to the encoder delay, but it would be better if we
|
||||||
@ -779,7 +779,7 @@ static int check_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
|
|
||||||
static int prepare_input_packet(AVFormatContext *s, AVStream *st, AVPacket *pkt)
|
static int prepare_input_packet(AVFormatContext *s, AVStream *st, AVPacket *pkt)
|
||||||
{
|
{
|
||||||
#if !FF_API_COMPUTE_PKT_FIELDS2 || !FF_API_LAVF_AVCTX
|
#if !FF_API_COMPUTE_PKT_FIELDS2
|
||||||
/* sanitize the timestamps */
|
/* sanitize the timestamps */
|
||||||
if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
|
if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
|
||||||
|
|
||||||
@ -1140,7 +1140,7 @@ static int write_packet_common(AVFormatContext *s, AVStream *st, AVPacket *pkt,
|
|||||||
|
|
||||||
guess_pkt_duration(s, st, pkt);
|
guess_pkt_duration(s, st, pkt);
|
||||||
|
|
||||||
#if FF_API_COMPUTE_PKT_FIELDS2 && FF_API_LAVF_AVCTX
|
#if FF_API_COMPUTE_PKT_FIELDS2
|
||||||
if ((ret = compute_muxer_pkt_fields(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
|
if ((ret = compute_muxer_pkt_fields(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
|
||||||
return ret;
|
return ret;
|
||||||
#endif
|
#endif
|
||||||
|
@ -55,9 +55,6 @@
|
|||||||
* at once through the bump. This improves the git bisect-ability of the change.
|
* at once through the bump. This improves the git bisect-ability of the change.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#ifndef FF_API_COMPUTE_PKT_FIELDS2
|
|
||||||
#define FF_API_COMPUTE_PKT_FIELDS2 (LIBAVFORMAT_VERSION_MAJOR < 59)
|
|
||||||
#endif
|
|
||||||
#ifndef FF_API_OLD_OPEN_CALLBACKS
|
#ifndef FF_API_OLD_OPEN_CALLBACKS
|
||||||
#define FF_API_OLD_OPEN_CALLBACKS (LIBAVFORMAT_VERSION_MAJOR < 59)
|
#define FF_API_OLD_OPEN_CALLBACKS (LIBAVFORMAT_VERSION_MAJOR < 59)
|
||||||
#endif
|
#endif
|
||||||
@ -115,6 +112,9 @@
|
|||||||
#ifndef FF_API_LAVF_PRIV_OPT
|
#ifndef FF_API_LAVF_PRIV_OPT
|
||||||
#define FF_API_LAVF_PRIV_OPT (LIBAVFORMAT_VERSION_MAJOR < 60)
|
#define FF_API_LAVF_PRIV_OPT (LIBAVFORMAT_VERSION_MAJOR < 60)
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef FF_API_COMPUTE_PKT_FIELDS2
|
||||||
|
#define FF_API_COMPUTE_PKT_FIELDS2 (LIBAVFORMAT_VERSION_MAJOR < 60)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifndef FF_API_R_FRAME_RATE
|
#ifndef FF_API_R_FRAME_RATE
|
||||||
|
Loading…
Reference in New Issue
Block a user