comparison flacenc.c @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents a4104482ceef
children e943e1409077
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #include "libavutil/crc.h"
23 #include "libavutil/lls.h"
22 #include "avcodec.h" 24 #include "avcodec.h"
23 #include "bitstream.h" 25 #include "bitstream.h"
24 #include "crc.h"
25 #include "dsputil.h" 26 #include "dsputil.h"
26 #include "golomb.h" 27 #include "golomb.h"
27 #include "lls.h"
28 28
29 #define FLAC_MAX_CH 8 29 #define FLAC_MAX_CH 8
30 #define FLAC_MIN_BLOCKSIZE 16 30 #define FLAC_MIN_BLOCKSIZE 16
31 #define FLAC_MAX_BLOCKSIZE 65535 31 #define FLAC_MAX_BLOCKSIZE 65535
32 32