Commit d8dfda7e authored by Diego Biurrun's avatar Diego Biurrun

Use a consistent multiple inclusion guard.

Originally committed as revision 10267 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d9420d4d
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* License along with FFmpeg; if not, write to the Free Software * License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef MATHOPS_BFIN #ifndef AVCODEC_BFIN_MATHOPS_H
#define MATHOPS_BFIN #define AVCODEC_BFIN_MATHOPS_H
#ifdef CONFIG_MPEGAUDIO_HP #ifdef CONFIG_MPEGAUDIO_HP
#define MULH(X,Y) ({ int xxo; \ #define MULH(X,Y) ({ int xxo; \
...@@ -49,4 +49,4 @@ ...@@ -49,4 +49,4 @@
: "=W" (xxo) : "d" (a), "d" (b)); \ : "=W" (xxo) : "d" (a), "d" (b)); \
xxo; }) xxo; })
#endif #endif /* AVCODEC_BFIN_MATHOPS_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment