lavf/g726: Demuxer for raw G.726 streams, both left- and right-justified.

Compatible with the binary encoder attached to ticket #6596 (right-aligned)
and a sample from a SEG Mp3-Player (left-aligned).
This commit is contained in:
Carl Eugen Hoyos
2017-08-21 16:17:17 +02:00
parent cb1a3eecac
commit f61e2dcfc3
6 changed files with 112 additions and 1 deletions

View File

@@ -132,6 +132,8 @@ static void register_all(void)
REGISTER_DEMUXER (FRM, frm);
REGISTER_DEMUXER (FSB, fsb);
REGISTER_MUXDEMUX(G722, g722);
REGISTER_DEMUXER (G726, g726);
REGISTER_DEMUXER (G726LE, g726le);
REGISTER_MUXDEMUX(G723_1, g723_1);
REGISTER_DEMUXER (G729, g729);
REGISTER_DEMUXER (GDV, gdv);