Merge commit '0cf949a01193dcf6f83fd95d46792dd94479b4e4'

* commit '0cf949a01193dcf6f83fd95d46792dd94479b4e4':
  vp9: Add bsf to merge superframes

[14:25:37] <@BBB> the functional change is wrong
[14:25:48] <@BBB> it allows recusrively packing superframes in superframes
[14:26:37] <@BBB> so I would ignore the remainder

See 2e6636aa87

Merged-by: James Almer <jamrial@gmail.com>
pull/272/head
James Almer 7 years ago
commit 4c0426c478
  1. 10
      libavcodec/vp9_superframe_bsf.c

@ -71,10 +71,12 @@ static int merge_superframe(const struct CachedBuf *in, int n_in, AVPacket *out)
} }
#define wloop(mag, wr) \ #define wloop(mag, wr) \
for (n = 0; n < n_in; n++) { \ do { \
wr; \ for (n = 0; n < n_in; n++) { \
ptr += mag + 1; \ wr; \
} ptr += mag + 1; \
} \
} while (0)
// write superframe with marker 110[mag:2][nframes:3] // write superframe with marker 110[mag:2][nframes:3]
*ptr++ = marker; *ptr++ = marker;

Loading…
Cancel
Save