From 0de07510844517b615ef2a2e2916f6391ad88687 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Thu, 19 Feb 2015 22:18:55 +0200 Subject: rtpdec_h264: Make reusable functions non-static MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavformat/rtpdec_h264.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libavformat/rtpdec_h264.c') diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index f8167a9bd6..e781b3633d 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.c @@ -95,9 +95,9 @@ static void parse_profile_level_id(AVFormatContext *s, h264_data->level_idc = level_idc; } -static int parse_sprop_parameter_sets(AVFormatContext *s, - uint8_t **data_ptr, int *size_ptr, - const char *value) +int ff_h264_parse_sprop_parameter_sets(AVFormatContext *s, + uint8_t **data_ptr, int *size_ptr, + const char *value) { char base64packet[1024]; uint8_t decoded_packet[1024]; @@ -170,8 +170,8 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s, int ret; codec->extradata_size = 0; av_freep(&codec->extradata); - ret = parse_sprop_parameter_sets(s, &codec->extradata, - &codec->extradata_size, value); + ret = ff_h264_parse_sprop_parameter_sets(s, &codec->extradata, + &codec->extradata_size, value); av_log(s, AV_LOG_DEBUG, "Extradata set to %p (size: %d)\n", codec->extradata, codec->extradata_size); return ret; @@ -179,7 +179,7 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s, return 0; } -static int h264_handle_packet_stap_a(AVFormatContext *ctx, AVPacket *pkt, +int ff_h264_handle_aggregated_packet(AVFormatContext *ctx, AVPacket *pkt, const uint8_t *buf, int len, int start_skip, int *nal_counters, int nal_mask) @@ -315,8 +315,8 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data, // consume the STAP-A NAL buf++; len--; - result = h264_handle_packet_stap_a(ctx, pkt, buf, len, 0, - NAL_COUNTERS, NAL_MASK); + result = ff_h264_handle_aggregated_packet(ctx, pkt, buf, len, 0, + NAL_COUNTERS, NAL_MASK); break; case 25: // STAP-B -- cgit v1.2.3