Commit fcfa3ebe authored by Clément Bœsch's avatar Clément Bœsch

avcodec/utils: remove avcodec_ prefix for internal symbol

parent b227be34
...@@ -1235,7 +1235,7 @@ int av_codec_get_max_lowres(const AVCodec *codec) ...@@ -1235,7 +1235,7 @@ int av_codec_get_max_lowres(const AVCodec *codec)
return codec->max_lowres; return codec->max_lowres;
} }
static void avcodec_get_subtitle_defaults(AVSubtitle *sub) static void get_subtitle_defaults(AVSubtitle *sub)
{ {
memset(sub, 0, sizeof(*sub)); memset(sub, 0, sizeof(*sub));
sub->pts = AV_NOPTS_VALUE; sub->pts = AV_NOPTS_VALUE;
...@@ -2616,7 +2616,7 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, ...@@ -2616,7 +2616,7 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
} }
*got_sub_ptr = 0; *got_sub_ptr = 0;
avcodec_get_subtitle_defaults(sub); get_subtitle_defaults(sub);
if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) { if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size) {
AVPacket pkt_recoded; AVPacket pkt_recoded;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment