From 877937b3822888edad3d979e55cc43a4212ee3a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Tue, 25 Jan 2011 00:59:30 +0000 Subject: Make ff_h264_find_frame_end static to h264.c; delete h264_parser.h The header is empty after making the function static, so delete it and drop its usage. Signed-off-by: Janne Grunau (cherry picked from commit 13eb6b90977768116c937c5d6b2e074679a3ad21) --- libavcodec/h264_parser.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavcodec/h264_parser.c') diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c index 70d08f4..89523b5 100644 --- a/libavcodec/h264_parser.c +++ b/libavcodec/h264_parser.c @@ -26,14 +26,13 @@ */ #include "parser.h" -#include "h264_parser.h" #include "h264data.h" #include "golomb.h" #include -int ff_h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size) +static int ff_h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size) { int i; uint32_t state; -- cgit v1.1