This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec/libopusdec: Set codec->delay to pre_skip not fixed value
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Jan Gerber
Michael Niedermayer
12 years ago
parent
05c3c568dc
commit
b2597042e5
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/libopusdec.c
+ 2
- 2
libavcodec/libopusdec.c
View File
@@ -108,8 +108,8 @@ static av_cold int libopus_decode_init(AVCodecContext *avc)
}
#endif
avc->internal->skip_samples = opus->pre_skip;
avc->delay =
3840; /* Decoder delay (in samples) at 48kHz */
/* Decoder delay (in samples) at 48kHz */
avc->delay =
avc->internal->skip_samples = opus->pre_skip;
return 0;
}
Write
Preview
Loading…
Cancel
Save