127c174483a8ae9688d5d4897c19074f62c7f1701James Dong/*
227c174483a8ae9688d5d4897c19074f62c7f1701James Dong * Copyright (C) 2009 The Android Open Source Project
327c174483a8ae9688d5d4897c19074f62c7f1701James Dong *
427c174483a8ae9688d5d4897c19074f62c7f1701James Dong * Licensed under the Apache License, Version 2.0 (the "License");
527c174483a8ae9688d5d4897c19074f62c7f1701James Dong * you may not use this file except in compliance with the License.
627c174483a8ae9688d5d4897c19074f62c7f1701James Dong * You may obtain a copy of the License at
727c174483a8ae9688d5d4897c19074f62c7f1701James Dong *
827c174483a8ae9688d5d4897c19074f62c7f1701James Dong *      http://www.apache.org/licenses/LICENSE-2.0
927c174483a8ae9688d5d4897c19074f62c7f1701James Dong *
1027c174483a8ae9688d5d4897c19074f62c7f1701James Dong * Unless required by applicable law or agreed to in writing, software
1127c174483a8ae9688d5d4897c19074f62c7f1701James Dong * distributed under the License is distributed on an "AS IS" BASIS,
1227c174483a8ae9688d5d4897c19074f62c7f1701James Dong * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1327c174483a8ae9688d5d4897c19074f62c7f1701James Dong * See the License for the specific language governing permissions and
1427c174483a8ae9688d5d4897c19074f62c7f1701James Dong * limitations under the License.
1527c174483a8ae9688d5d4897c19074f62c7f1701James Dong */
16609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Huber#ifndef AVC_TYPES_H_
17609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Huber
18609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Huber#define AVC_TYPES_H_
19609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Huber
20609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Huber#include <stdint.h>
21609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Huber
22609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Hubertypedef uint8_t uint8;
23609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Hubertypedef uint16_t uint16;
24609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Hubertypedef int16_t int16;
25609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Hubertypedef uint32_t uint32;
26609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Hubertypedef int32_t int32;
27609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Hubertypedef unsigned int uint;
28609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Huber
29609f1a00c96cf5605f4614e7bb6d0487c98969c5Andreas Huber#endif  // AVC_TYPES_H_
30