Mercurial > libavformat.hg
diff crc.c @ 903:68bc3ca12e79 libavformat
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
based on a patch by Luca Abeni < lucabe72 #@# email #.# it >
| author | diego |
|---|---|
| date | Thu, 19 Jan 2006 23:36:50 +0000 |
| parents | edbe5c3717f9 |
| children | d89d7ef290da |
line wrap: on
line diff
--- a/crc.c Thu Jan 19 22:30:37 2006 +0000 +++ b/crc.c Thu Jan 19 23:36:50 2006 +0000 @@ -56,6 +56,7 @@ } return (s2 << 16) | s1; } +#ifdef CONFIG_MUXERS typedef struct CRCState { uint32_t crcval; @@ -132,3 +133,4 @@ av_register_output_format(&framecrc_format); return 0; } +#endif /* CONFIG_MUXERS */
