diff options
author | Martin Storsjö <martin@martin.st> | 2013-03-25 14:11:41 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-03-26 09:50:02 +0200 |
commit | f1e9398621af0bc9d166014e4ce6996bb4f141d0 (patch) | |
tree | f4a7c9b8055d6fa5852bbbc53bba9444f137e36c /libavcodec/h264_parser.c | |
parent | 75644335b907919057960716508477239c26fed4 (diff) | |
download | ffmpeg-f1e9398621af0bc9d166014e4ce6996bb4f141d0.tar.gz |
lavc: Rename avpriv_mpv_find_start_code after moving out from mpegvideo
Also move the declaration to internal.h, and add restrict qualifiers
to the declaration (as in the implementation).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/h264_parser.c')
-rw-r--r-- | libavcodec/h264_parser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c index 8c84d439d8..3c98c84788 100644 --- a/libavcodec/h264_parser.c +++ b/libavcodec/h264_parser.c @@ -28,6 +28,7 @@ #include "parser.h" #include "h264data.h" #include "golomb.h" +#include "internal.h" #include <assert.h> @@ -130,7 +131,7 @@ static inline int parse_nal_units(AVCodecParserContext *s, for(;;) { int src_length, dst_length, consumed; - buf = avpriv_mpv_find_start_code(buf, buf_end, &state); + buf = avpriv_find_start_code(buf, buf_end, &state); if(buf >= buf_end) break; --buf; |