mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-25 16:21:13 +00:00
avformat/sdp: add missing FF_API_LAVF_AVCTX check
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
137a36bdfc
commit
10c01c3779
@ -704,6 +704,8 @@ static char *sdp_write_media_attributes(char *buff, int size, AVStream *st, int
|
|||||||
case AV_CODEC_ID_SPEEX:
|
case AV_CODEC_ID_SPEEX:
|
||||||
av_strlcatf(buff, size, "a=rtpmap:%d speex/%d\r\n",
|
av_strlcatf(buff, size, "a=rtpmap:%d speex/%d\r\n",
|
||||||
payload_type, p->sample_rate);
|
payload_type, p->sample_rate);
|
||||||
|
#if FF_API_LAVF_AVCTX
|
||||||
|
FF_DISABLE_DEPRECATION_WARNINGS
|
||||||
if (st->codec) {
|
if (st->codec) {
|
||||||
const char *mode;
|
const char *mode;
|
||||||
uint64_t vad_option;
|
uint64_t vad_option;
|
||||||
@ -718,6 +720,8 @@ static char *sdp_write_media_attributes(char *buff, int size, AVStream *st, int
|
|||||||
av_strlcatf(buff, size, "a=fmtp:%d vbr=%s\r\n",
|
av_strlcatf(buff, size, "a=fmtp:%d vbr=%s\r\n",
|
||||||
payload_type, mode);
|
payload_type, mode);
|
||||||
}
|
}
|
||||||
|
FF_ENABLE_DEPRECATION_WARNINGS
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
case AV_CODEC_ID_OPUS:
|
case AV_CODEC_ID_OPUS:
|
||||||
/* The opus RTP draft says that all opus streams MUST be declared
|
/* The opus RTP draft says that all opus streams MUST be declared
|
||||||
|
Loading…
Reference in New Issue
Block a user