mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/movenc: Use strict_std_compliance from the muxer layer instead of the encoder layer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2893dbfe2c
commit
389ce22b5f
|
@ -5274,7 +5274,7 @@ static int mov_write_header(AVFormatContext *s)
|
||||||
}
|
}
|
||||||
if (track->mode != MODE_MOV &&
|
if (track->mode != MODE_MOV &&
|
||||||
track->enc->codec_id == AV_CODEC_ID_MP3 && track->timescale < 16000) {
|
track->enc->codec_id == AV_CODEC_ID_MP3 && track->timescale < 16000) {
|
||||||
if (track->enc->strict_std_compliance >= FF_COMPLIANCE_NORMAL) {
|
if (s->strict_std_compliance >= FF_COMPLIANCE_NORMAL) {
|
||||||
av_log(s, AV_LOG_ERROR, "track %d: muxing mp3 at %dhz is not standard, to mux anyway set strict to -1\n",
|
av_log(s, AV_LOG_ERROR, "track %d: muxing mp3 at %dhz is not standard, to mux anyway set strict to -1\n",
|
||||||
i, track->enc->sample_rate);
|
i, track->enc->sample_rate);
|
||||||
ret = AVERROR(EINVAL);
|
ret = AVERROR(EINVAL);
|
||||||
|
|
Loading…
Reference in New Issue