diff mbox

[FFmpeg-devel,1/2] avformat/rpl: Fix detection of 8-bit linear formats

Message ID 20190614195134.19205-1-ccawley2011@gmail.com
State Accepted
Commit dcf3f8b368cdab908a84ad28ec5a7e0f15f5b33d
Headers show

Commit Message

Cameron Cawley June 14, 2019, 7:51 p.m. UTC
Was previously broken by commit 8cf5f94.
Fixes ticket #7859

Signed-off-by: Cameron Cawley <ccawley2011@gmail.com>
---
 libavformat/rpl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Michael Niedermayer July 5, 2019, 4:12 p.m. UTC | #1
On Fri, Jun 14, 2019 at 08:51:33PM +0100, Cameron Cawley wrote:
> Was previously broken by commit 8cf5f94.
> Fixes ticket #7859
> 
> Signed-off-by: Cameron Cawley <ccawley2011@gmail.com>
> ---
>  libavformat/rpl.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

will apply patchset

still a fate test should be added for these, or someone will break itz again

thx

[...]
diff mbox

Patch

diff --git a/libavformat/rpl.c b/libavformat/rpl.c
index 7aec3503da..683b3a835a 100644
--- a/libavformat/rpl.c
+++ b/libavformat/rpl.c
@@ -210,10 +210,10 @@  static int rpl_read_header(AVFormatContext *s)
                     ast->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE;
                     break;
                 } else if (ast->codecpar->bits_per_coded_sample == 8) {
-                    if(av_strcasecmp(audio_type, "unsigned") >= 0) {
+                    if(av_stristr(audio_type, "unsigned") != NULL) {
                         ast->codecpar->codec_id = AV_CODEC_ID_PCM_U8;
                         break;
-                    } else if(av_strcasecmp(audio_type, "linear") >= 0) {
+                    } else if(av_stristr(audio_type, "linear") != NULL) {
                         ast->codecpar->codec_id = AV_CODEC_ID_PCM_S8;
                         break;
                     } else {