On Wed, 29 May 2013 18:00:05 +0200, Diego Biurrun <[email protected]> wrote: > On 2013-05-29 16:31, Anton Khirnov wrote: > > --- > > Changelog | 1 + > > configure | 4 + > > libavcodec/Makefile | 1 + > > libavcodec/allcodecs.c | 1 + > > libavcodec/libwavpackenc.c | 194 > > ++++++++++++++++++++++++++++++++++++++++++++ > > libavcodec/version.h | 4 +- > > 6 files changed, 203 insertions(+), 2 deletions(-) > > create mode 100644 libavcodec/libwavpackenc.c > > Documentation update missing. > > > --- /dev/null > > +++ b/libavcodec/libwavpackenc.c > > @@ -0,0 +1,194 @@ > > + > > +AVCodec ff_libwavpack_encoder = { > > + .name = "libwavpack", > > + .type = AVMEDIA_TYPE_AUDIO, > > + .id = AV_CODEC_ID_WAVPACK, > > + .priv_data_size = sizeof(LibWavpackContext), > > + .init = wavpack_encode_init, > > + .encode2 = wavpack_encode_frame, > > + .close = wavpack_encode_close, > > + .capabilities = CODEC_CAP_DELAY | CODEC_CAP_SMALL_LAST_FRAME, > > + .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S32, > > + AV_SAMPLE_FMT_NONE }, > > +}; > > No long_name?
Can't think of anything useful to write there. -- Anton Khirnov _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
