comparison flv.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 ccddbe22fa8f
children 41f9a32e9516
comparison
equal deleted inserted replaced
3851:9b3ad7f292a4 3852:1b6245500d8c
19 * You should have received a copy of the GNU Lesser General Public 19 * You should have received a copy of the GNU Lesser General Public
20 * License along with FFmpeg; if not, write to the Free Software 20 * License along with FFmpeg; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */ 22 */
23 23
24 #ifndef FFMPEG_FLV_H 24 #ifndef AVFORMAT_FLV_H
25 #define FFMPEG_FLV_H 25 #define AVFORMAT_FLV_H
26 26
27 /* offsets for packed values */ 27 /* offsets for packed values */
28 #define FLV_AUDIO_SAMPLESSIZE_OFFSET 1 28 #define FLV_AUDIO_SAMPLESSIZE_OFFSET 1
29 #define FLV_AUDIO_SAMPLERATE_OFFSET 2 29 #define FLV_AUDIO_SAMPLERATE_OFFSET 2
30 #define FLV_AUDIO_CODECID_OFFSET 4 30 #define FLV_AUDIO_CODECID_OFFSET 4
108 AMF_DATA_TYPE_ARRAY = 0x0a, 108 AMF_DATA_TYPE_ARRAY = 0x0a,
109 AMF_DATA_TYPE_DATE = 0x0b, 109 AMF_DATA_TYPE_DATE = 0x0b,
110 AMF_DATA_TYPE_UNSUPPORTED = 0x0d, 110 AMF_DATA_TYPE_UNSUPPORTED = 0x0d,
111 } AMFDataType; 111 } AMFDataType;
112 112
113 #endif /* FFMPEG_FLV_H */ 113 #endif /* AVFORMAT_FLV_H */