Browse Source

MT#54294 fix typo

Change-Id: Ifb26bb5f23941afb4e10005ca69e5546cfd0439a
pull/1783/head
Richard Fuchs 2 years ago
parent
commit
f9d6e7b448
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lib/codeclib.c

+ 2
- 2
lib/codeclib.c View File

@ -4757,7 +4757,7 @@ codec_chain_t *codec_chain_new(codec_def_t *src, format_t *src_format, codec_def
return NULL;
if (src_format->channels != 1)
return NULL;
if (dst_format->channels != 1)
if (dst_format->channels != 2)
return NULL;
if (dst_format->clockrate != 48000)
return NULL;
@ -4778,7 +4778,7 @@ codec_chain_t *codec_chain_new(codec_def_t *src, format_t *src_format, codec_def
return NULL;
if (dst_format->channels != 1)
return NULL;
if (src_format->channels != 1)
if (src_format->channels != 2)
return NULL;
if (src_format->clockrate != 48000)
return NULL;


Loading…
Cancel
Save