comparison bfi.c @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents 582712867474
children e943e1409077
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
24 * @brief Brute Force & Ignorance (.bfi) video decoder 24 * @brief Brute Force & Ignorance (.bfi) video decoder
25 * @author Sisir Koppaka ( sisir.koppaka at gmail dot com ) 25 * @author Sisir Koppaka ( sisir.koppaka at gmail dot com )
26 * @sa http://wiki.multimedia.cx/index.php?title=BFI 26 * @sa http://wiki.multimedia.cx/index.php?title=BFI
27 */ 27 */
28 28
29 #include "libavutil/common.h"
29 #include "avcodec.h" 30 #include "avcodec.h"
30 #include "common.h"
31 #include "bytestream.h" 31 #include "bytestream.h"
32 32
33 typedef struct BFIContext { 33 typedef struct BFIContext {
34 AVCodecContext *avctx; 34 AVCodecContext *avctx;
35 AVFrame frame; 35 AVFrame frame;