On Sat, Mar 19, 2016 at 05:48:39PM -0400, Vittorio Giovara wrote:
> From: Vladimir Voroshilov <[email protected]>
> 
> Signed-off-by: Vittorio Giovara <[email protected]>
> ---
>  Changelog                |   1 +
>  libavformat/Makefile     |   1 +
>  libavformat/allformats.c |   1 +
>  libavformat/g729dec.c    | 105 
> +++++++++++++++++++++++++++++++++++++++++++++++
>  4 files changed, 108 insertions(+)
>  create mode 100644 libavformat/g729dec.c

doc, version bump

> --- a/libavformat/Makefile
> +++ b/libavformat/Makefile
> @@ -142,6 +142,7 @@ OBJS-$(CONFIG_G722_DEMUXER)              += g722.o 
> rawdec.o
>  OBJS-$(CONFIG_G722_MUXER)                += rawenc.o
>  OBJS-$(CONFIG_G723_1_DEMUXER)            += g723_1.o
>  OBJS-$(CONFIG_G723_1_MUXER)              += rawenc.o
> +OBJS-$(CONFIG_G729_DEMUXER)              += g729dec.o

Is a muxer in the works or why the "dec" suffix?

> --- /dev/null
> +++ b/libavformat/g729dec.c
> @@ -0,0 +1,105 @@
> +
> +static int g729_read_header(AVFormatContext *s)
> +{
> +
> +    switch(s->bit_rate) {

switch (

Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to