summaryrefslogtreecommitdiff
path: root/libavformat/framehook.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-01-06 16:02:55 +0000
committerDiego Biurrun <diego@biurrun.de>2008-01-06 16:02:55 +0000
commit621d7fe936f8f34fff059b2a52f5ab72707e8e95 (patch)
tree6ff666e716c5926cb3745a2b80064f5c8656b32a /libavformat/framehook.c
parent29c90869e64d21cfdc4a01692165b818ae510255 (diff)
Rename two structures, identifiers starting with _[A-Z] are reserved.
Originally committed as revision 11435 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/framehook.c')
-rw-r--r--libavformat/framehook.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/framehook.c b/libavformat/framehook.c
index 8738f80307..eb5184f02a 100644
--- a/libavformat/framehook.c
+++ b/libavformat/framehook.c
@@ -28,8 +28,8 @@
#endif
-typedef struct _FrameHookEntry {
- struct _FrameHookEntry *next;
+typedef struct FrameHookEntry {
+ struct FrameHookEntry *next;
FrameHookConfigureFn Configure;
FrameHookProcessFn Process;
FrameHookReleaseFn Release;