diff options
author | Clément Bœsch <u@pkh.me> | 2014-09-14 19:00:26 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-09-14 19:07:09 +0200 |
commit | fcfa3ebed1342312bb599a10d8d2a5e9f3093e33 (patch) | |
tree | b05700e5f702bacdad353f3b8b50944d0aa26bd9 /libavcodec | |
parent | b227be34db76541db0269a769dad90c20793353f (diff) | |
download | ffmpeg-fcfa3ebed1342312bb599a10d8d2a5e9f3093e33.tar.gz |
avcodec/utils: remove avcodec_ prefix for internal symbol
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 397819297d..28c5785398 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1235,7 +1235,7 @@ int av_codec_get_max_lowres(const AVCodec *codec) return codec->max_lowres; } -static void avcodec_get_subtitle_defaults(AVSubtitle *sub) +static void get_subtitle_defaults(AVSubtitle *sub) { memset(sub, 0, sizeof(*sub)); sub->pts = AV_NOPTS_VALUE; @@ -2616,7 +2616,7 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, } *got_sub_ptr = 0; - avcodec_get_subtitle_defaults(sub); + get_subtitle_defaults(sub); if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) { AVPacket pkt_recoded; |