comparison truemotion1.c @ 1881:39ad6cd5d4a6 libavcodec

remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG -> MKTAG/MKBETAG
author melanson
date Sun, 14 Mar 2004 04:04:08 +0000
parents a660ef952580
children d7505fbe66cb
comparison
equal deleted inserted replaced
1880:56ccec0d08bd 1881:39ad6cd5d4a6
39 #define printf(...) {} //(f)printf() usage is forbidden in libavcodec, use av_log 39 #define printf(...) {} //(f)printf() usage is forbidden in libavcodec, use av_log
40 #define fprintf(...) {} 40 #define fprintf(...) {}
41 41
42 #include "truemotion1data.h" 42 #include "truemotion1data.h"
43 43
44 #define LE_16(x) ((((uint8_t*)(x))[1] << 8) | ((uint8_t*)(x))[0])
45
46 typedef struct TrueMotion1Context { 44 typedef struct TrueMotion1Context {
47 AVCodecContext *avctx; 45 AVCodecContext *avctx;
48 AVFrame frame; 46 AVFrame frame;
49 AVFrame prev_frame; 47 AVFrame prev_frame;
50 48