Browse Source

omadec: Fix position of opening parenthesis

tags/n3.0
Vittorio Giovara 10 years ago
parent
commit
f53583ea6e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/omadec.c

+ 2
- 2
libavformat/omadec.c View File

@@ -197,8 +197,8 @@ static int nprobe(AVFormatContext *s, uint8_t *enc_header, unsigned size,
av_des_init(av_des, n_val, 192, 1);
while (datalen-- > 0) {
av_des_crypt(av_des, oc->r_val, &enc_header[pos], 2, NULL, 1);
kset(s, oc->r_val, NULL, 16); {
if (!rprobe(s, enc_header, size, oc->r_val))
kset(s, oc->r_val, NULL, 16);
if (!rprobe(s, enc_header, size, oc->r_val)) {
av_free(av_des);
return 0;
}


Loading…
Cancel
Save