1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Squash #1685, #1282, #1547: Support ARM platform. 5.0.5

This commit is contained in:
winlin 2021-06-22 07:49:48 +08:00
parent efdbf37255
commit a594678e3d
285 changed files with 12724 additions and 1671 deletions

View file

@ -31,7 +31,6 @@
#include "opus_celt.h"
#include "opustab.h"
#include "internal.h"
#include "vorbis.h"
static const uint16_t opus_frame_duration[32] = {
@ -327,8 +326,6 @@ av_cold int ff_opus_parse_extradata(AVCodecContext *avctx,
}
avctx->delay = AV_RL16(extradata + 10);
if (avctx->internal)
avctx->internal->skip_samples = avctx->delay;
channels = avctx->extradata ? extradata[9] : (avctx->channels == 1) ? 1 : 2;
if (!channels) {