comparison dca.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents e153b9ff47d3
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
20 * You should have received a copy of the GNU Lesser General Public 20 * You should have received a copy of the GNU Lesser General Public
21 * License along with FFmpeg; if not, write to the Free Software 21 * License along with FFmpeg; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 */ 23 */
24 24
25 #ifndef AVCODEC_DCA_H
26 #define AVCODEC_DCA_H
27
25 /** DCA syncwords, also used for bitstream type detection */ 28 /** DCA syncwords, also used for bitstream type detection */
26 #define DCA_MARKER_RAW_BE 0x7FFE8001 29 #define DCA_MARKER_RAW_BE 0x7FFE8001
27 #define DCA_MARKER_RAW_LE 0xFE7F0180 30 #define DCA_MARKER_RAW_LE 0xFE7F0180
28 #define DCA_MARKER_14B_BE 0x1FFFE800 31 #define DCA_MARKER_14B_BE 0x1FFFE800
29 #define DCA_MARKER_14B_LE 0xFF1F00E8 32 #define DCA_MARKER_14B_LE 0xFF1F00E8
33
34 #endif