diff options
author | David Goldwich <david.goldwich@gmail.com> | 2011-12-02 05:54:19 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-12-04 15:19:51 +0100 |
commit | e96070074db451b650d214f3e1e9df99ac11773a (patch) | |
tree | 2be72702dc8a76df753390da8d69a871db08dbde | |
parent | a548b6cbfcf6d872bed473c1981931db36eda690 (diff) | |
download | ffmpeg-e96070074db451b650d214f3e1e9df99ac11773a.tar.gz |
oma: clearify ambiguous if condition
Signed-off-by: David Goldwich <david.goldwich@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | libavformat/oma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/oma.c b/libavformat/oma.c index 9e98202e4f..0d81a43dfd 100644 --- a/libavformat/oma.c +++ b/libavformat/oma.c @@ -202,8 +202,8 @@ static int decrypt_init(AVFormatContext *s, ID3v2ExtraMeta *em, uint8_t *header) while (em) { if (!strcmp(em->tag, "GEOB") && (geob = em->data) && - !strcmp(geob->description, "OMG_LSI") || - !strcmp(geob->description, "OMG_BKLSI")) { + (!strcmp(geob->description, "OMG_LSI") || + !strcmp(geob->description, "OMG_BKLSI"))) { break; } em = em->next; |