From patchwork Thu Feb 19 20:34:01 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [03/13] rtpdec_h264: Make a parameter pointer const X-Patchwork-Submitter: =?utf-8?q?Martin_Storsj=C3=B6?= X-Patchwork-Id: 56748 Message-Id: <1424378051-6607-3-git-send-email-martin@martin.st> To: libav-devel@libav.org Date: Thu, 19 Feb 2015 22:34:01 +0200 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= List-Id: libav development --- libavformat/rtpdec_h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index d24fa32..8dab0d2 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.c @@ -94,7 +94,7 @@ static void parse_profile_level_id(AVFormatContext *s, static int parse_sprop_parameter_sets(AVFormatContext *s, AVCodecContext *codec, - char *value) + const char *value) { char base64packet[1024]; uint8_t decoded_packet[1024];