comparison asf.h @ 3852:1b6245500d8c libavformat

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents cd1eabf38f6f
children 55e94f2a8ac1
comparison
equal deleted inserted replaced
3851:9b3ad7f292a4 3852:1b6245500d8c
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef FFMPEG_ASF_H 21 #ifndef AVFORMAT_ASF_H
22 #define FFMPEG_ASF_H 22 #define AVFORMAT_ASF_H
23 23
24 #include <stdint.h> 24 #include <stdint.h>
25 #include "avformat.h" 25 #include "avformat.h"
26 26
27 #define PACKET_SIZE 3200 27 #define PACKET_SIZE 3200
284 #define ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_WORD 0x80 //1000 0000 284 #define ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_WORD 0x80 //1000 0000
285 #define ASF_PL_MASK_PAYLOAD_LENGTH_FIELD_SIZE 0xc0 //1100 0000 285 #define ASF_PL_MASK_PAYLOAD_LENGTH_FIELD_SIZE 0xc0 //1100 0000
286 286
287 #define ASF_PL_FLAG_KEY_FRAME 0x80 //1000 0000 287 #define ASF_PL_FLAG_KEY_FRAME 0x80 //1000 0000
288 288
289 #endif /* FFMPEG_ASF_H */ 289 #endif /* AVFORMAT_ASF_H */