comparison framehook.c @ 368:08e042299038 libavformat

(f)printf() is disallowed in libavcodec, compilation will fail now if its used, except that codecs which where added after the printf->av_log change which did ignore av_log() and used prinf are now silent and wont print anything, they should be changed to use av_log, i could do that, but its better if the orginal developer decides which AV_LOG level each message should get
author michael
date Sun, 22 Feb 2004 00:31:19 +0000
parents a58a8a53eb46
children 5f9e330500d9
comparison
equal deleted inserted replaced
367:3fca8e9142a4 368:08e042299038
16 * License along with this library; if not, write to the Free Software 16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */ 18 */
19 #include <errno.h> 19 #include <errno.h>
20 #include "config.h" 20 #include "config.h"
21 #include "avformat.h"
21 #include "framehook.h" 22 #include "framehook.h"
22 #include "avformat.h"
23 23
24 #ifdef CONFIG_HAVE_DLFCN 24 #ifdef CONFIG_HAVE_DLFCN
25 #include <dlfcn.h> 25 #include <dlfcn.h>
26 #endif 26 #endif
27 27