mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avformat: deprecate unused MP4A_LATM flag
A generic lavf flag for AAC LATM packetization for the RTP muxer was added inef409645f0and then made inert 20 days later in0832122880when a private muxer option was added and the generic flag no longer read.
This commit is contained in:
parent
0946c0ec17
commit
67747c89ad
5 changed files with 10 additions and 5 deletions
|
|
@ -58,7 +58,7 @@ int ff_rtp_chain_mux_open(AVFormatContext **out, AVFormatContext *s,
|
|||
rtpctx->max_delay = s->max_delay;
|
||||
/* Copy other stream parameters. */
|
||||
rtpctx->streams[0]->sample_aspect_ratio = st->sample_aspect_ratio;
|
||||
rtpctx->flags |= s->flags & (AVFMT_FLAG_MP4A_LATM | AVFMT_FLAG_BITEXACT);
|
||||
rtpctx->flags |= s->flags & AVFMT_FLAG_BITEXACT;
|
||||
|
||||
/* Get the payload type from the codec */
|
||||
if (st->id < RTP_PT_PRIVATE)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue