[FFmpeg-devel] [PATCH 05/12] opusdec: Remove dead code

Rostislav Pehlivanov atomnuker at gmail.com
Fri Jul 7 00:02:27 EEST 2017


On 6 July 2017 at 19:28, Derek Buitenhuis <derek.buitenhuis at gmail.com>
wrote:

> Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>
> ---
>  libavcodec/opusdec.c | 9 +--------
>  1 file changed, 1 insertion(+), 8 deletions(-)
>
> diff --git a/libavcodec/opusdec.c b/libavcodec/opusdec.c
> index 1110302f9c..5a7ba9dbb4 100644
> --- a/libavcodec/opusdec.c
> +++ b/libavcodec/opusdec.c
> @@ -152,14 +152,7 @@ static int opus_init_resample(OpusStreamContext *s)
>
>  static int opus_decode_redundancy(OpusStreamContext *s, const uint8_t
> *data, int size)
>  {
> -    int ret;
> -    enum OpusBandwidth bw = s->packet.bandwidth;
> -
> -    if (s->packet.mode == OPUS_MODE_SILK &&
> -        bw == OPUS_BANDWIDTH_MEDIUMBAND)
> -        bw = OPUS_BANDWIDTH_WIDEBAND;
> -
> -    ret = ff_opus_rc_dec_init(&s->redundancy_rc, data, size);
> +    int ret = ff_opus_rc_dec_init(&s->redundancy_rc, data, size);
>      if (ret < 0)
>          goto fail;
>      ff_opus_rc_dec_raw_init(&s->redundancy_rc, data + size, size);
> --
> 2.11.0
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>

LGTM, thanks


More information about the ffmpeg-devel mailing list