diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-11-02 00:42:48 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-11-02 00:43:50 +0100 |
commit | a8fd50bb4eeb0b159c46d51000b0d6a981748d9f (patch) | |
tree | d31b51952b19fbdade259999d2623c0d4add1792 | |
parent | 9282c96071be63bdee838754932948b309154ec4 (diff) | |
download | ffmpeg-a8fd50bb4eeb0b159c46d51000b0d6a981748d9f.tar.gz |
Fix compilation after aa9d7058.
-rw-r--r-- | libavcodec/h264.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index ab7ee5b153..8761a61708 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -36,7 +36,6 @@ #include "h264dsp.h" #include "h264pred.h" #include "h264qpel.h" -#include "internal.h" // for avpriv_find_start_code() #include "rectangle.h" #define MAX_SPS_COUNT 32 @@ -975,7 +974,7 @@ static inline int find_start_code(const uint8_t *buf, int buf_size, { uint32_t state = -1; - buf_index = avpriv_find_start_code(buf + buf_index, buf + next_avc + 1, &state) - buf - 1; + buf_index = avpriv_mpv_find_start_code(buf + buf_index, buf + next_avc + 1, &state) - buf - 1; return FFMIN(buf_index, buf_size); } |