2001-08-06 03:44:48 +03:00
|
|
|
/*
|
|
|
|
* MJPEG encoder and decoder
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2000, 2001 Fabrice Bellard
|
2004-08-21 22:18:45 +03:00
|
|
|
* Copyright (c) 2003 Alex Beregszaszi
|
|
|
|
* Copyright (c) 2003-2004 Michael Niedermayer
|
2001-08-06 03:44:48 +03:00
|
|
|
*
|
2007-07-05 13:37:29 +03:00
|
|
|
* Support for external huffman table, various fixes (AVID workaround),
|
|
|
|
* aspecting, new decode_frame mechanism and apple mjpeg-b support
|
|
|
|
* by Alex Beregszaszi
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-26 01:39:29 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-08-06 03:44:48 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-08-06 03:44:48 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-26 01:39:29 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-08-06 03:44:48 +03:00
|
|
|
*
|
2002-05-26 01:39:29 +03:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-08-06 03:44:48 +03:00
|
|
|
*/
|
2003-03-06 13:32:04 +02:00
|
|
|
|
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2003-03-06 13:32:04 +02:00
|
|
|
* MJPEG encoder and decoder.
|
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2021-02-10 02:19:44 +02:00
|
|
|
#include "jpegtabs.h"
|