Browse Source

Remove pointless #ifdef CONFIG_VHOOK from the code.

The file is only ever compiled if CONFIG_VHOOK is set.

Originally committed as revision 15157 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
c184318852
1 changed files with 0 additions and 5 deletions
  1. +0
    -5
      libavformat/framehook.c

+ 0
- 5
libavformat/framehook.c View File

@@ -41,7 +41,6 @@ static FrameHookEntry *first_hook;
/* Returns 0 on OK */ /* Returns 0 on OK */
int frame_hook_add(int argc, char *argv[]) int frame_hook_add(int argc, char *argv[])
{ {
#ifdef CONFIG_VHOOK
void *loaded; void *loaded;
FrameHookEntry *fhe, **fhep; FrameHookEntry *fhe, **fhep;


@@ -87,10 +86,6 @@ int frame_hook_add(int argc, char *argv[])
*fhep = fhe; *fhep = fhe;


return 0; return 0;
#else
av_log(NULL, AV_LOG_ERROR, "Video hooking not compiled into this version\n");
return 1;
#endif
} }


void frame_hook_process(AVPicture *pict, enum PixelFormat pix_fmt, int width, int height, int64_t pts) void frame_hook_process(AVPicture *pict, enum PixelFormat pix_fmt, int width, int height, int64_t pts)


Loading…
Cancel
Save