ffmpeg | branch: master | Clément Bœsch <[email protected]> | Sun Sep 14 19:00:26 2014 +0200| [fcfa3ebed1342312bb599a10d8d2a5e9f3093e33] | committer: Clément Bœsch
avcodec/utils: remove avcodec_ prefix for internal symbol > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fcfa3ebed1342312bb599a10d8d2a5e9f3093e33 --- libavcodec/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 3978192..28c5785 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; _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
