[FFmpeg-soc] [soc]: r282 - in jpeg2000: checkout.sh ffmpeg.patch j2k.h j2kenc.c

Diego Biurrun diego at biurrun.de
Mon Jul 2 19:55:35 CEST 2007


On Mon, Jun 25, 2007 at 12:28:41PM +0200, k.nowosad wrote:
> 
> Log:
> The basics of encoder. Quantization, dwt 9-7 and some smaller features will be added.
> 
> --- (empty file)
> +++ jpeg2000/ffmpeg.patch	Mon Jun 25 12:28:41 2007
> @@ -0,0 +1,36 @@
> +Index: allcodecs.c
> +===================================================================
> +--- allcodecs.c	(wersja 9417)
> ++++ allcodecs.c	(kopia robocza)
> +@@ -92,6 +92,7 @@
> +     REGISTER_ENCDEC (JPEGLS, jpegls);
> ++    REGISTER_ENCODER(JPEG2000, jpeg2000);
> +     REGISTER_DECODER(KMVC, kmvc);
> +Index: allcodecs.h
> +===================================================================
> +--- allcodecs.h	(wersja 9417)
> ++++ allcodecs.h	(kopia robocza)
> +@@ -40,6 +40,7 @@
> + extern AVCodec jpegls_encoder;
> ++extern AVCodec jpeg2000_encoder;
> + extern AVCodec ljpeg_encoder;

Alphabetical order is screwed up here.

> --- (empty file)
> +++ jpeg2000/j2k.h	Mon Jun 25 12:28:41 2007
> @@ -0,0 +1,163 @@
> + *
> + * You should have received a copy of the GNU Lesser General Public
> + * License along with FFmpeg; if not, write to the Free Software
> + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
> + *
> + */

Useless empty line.

> --- (empty file)
> +++ jpeg2000/j2kenc.c	Mon Jun 25 12:28:41 2007
> @@ -0,0 +1,1266 @@
> + *
> + * You should have received a copy of the GNU Lesser General Public
> + * License along with FFmpeg; if not, write to the Free Software
> + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
> + *
> + */

dito

Diego



More information about the FFmpeg-soc mailing list