comparison pnm.c @ 4152:e893c1438b36 libavcodec

include parser.h instead of mpegvideo.h
author bcoudurier
date Mon, 06 Nov 2006 10:47:41 +0000
parents 186e51891c8c
children ce643a22f049
comparison
equal deleted inserted replaced
4151:93baab5a86d2 4152:e893c1438b36
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 #include "avcodec.h" 21 #include "avcodec.h"
22 #include "mpegvideo.h" //only for ParseContext 22 #include "parser.h" //for ParseContext
23 23
24 typedef struct PNMContext { 24 typedef struct PNMContext {
25 uint8_t *bytestream; 25 uint8_t *bytestream;
26 uint8_t *bytestream_start; 26 uint8_t *bytestream_start;
27 uint8_t *bytestream_end; 27 uint8_t *bytestream_end;