[FFmpeg-cvslog] rtpdec: Add const to string parameters in internal fmtp parsing functions

Martin Storsjö git at videolan.org
Tue Feb 24 23:44:34 CET 2015


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Tue Feb 24 12:31:23 2015 +0200| [ac0e54fda9305cc7d149007f5b512bb8619f7c78] | committer: Martin Storsjö

rtpdec: Add const to string parameters in internal fmtp parsing functions

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ac0e54fda9305cc7d149007f5b512bb8619f7c78
---

 libavformat/rtpdec_h264.c  |    2 +-
 libavformat/rtpdec_latm.c  |    2 +-
 libavformat/rtpdec_mpeg4.c |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c
index e624cc9..e79ac40 100644
--- a/libavformat/rtpdec_h264.c
+++ b/libavformat/rtpdec_h264.c
@@ -66,7 +66,7 @@ static const uint8_t start_sequence[] = { 0, 0, 0, 1 };
 
 static void parse_profile_level_id(AVFormatContext *s,
                                    PayloadContext *h264_data,
-                                   char *value)
+                                   const char *value)
 {
     char buffer[3];
     // 6 characters=3 bytes, in hex.
diff --git a/libavformat/rtpdec_latm.c b/libavformat/rtpdec_latm.c
index 2da0fbf..813f41b 100644
--- a/libavformat/rtpdec_latm.c
+++ b/libavformat/rtpdec_latm.c
@@ -96,7 +96,7 @@ static int latm_parse_packet(AVFormatContext *ctx, PayloadContext *data,
     return data->pos < data->len;
 }
 
-static int parse_fmtp_config(AVStream *st, char *value)
+static int parse_fmtp_config(AVStream *st, const char *value)
 {
     int len = ff_hex_to_data(NULL, value), i, ret = 0;
     GetBitContext gb;
diff --git a/libavformat/rtpdec_mpeg4.c b/libavformat/rtpdec_mpeg4.c
index 4a0593b..fe6b440 100644
--- a/libavformat/rtpdec_mpeg4.c
+++ b/libavformat/rtpdec_mpeg4.c
@@ -98,7 +98,7 @@ static void free_context(PayloadContext *data)
     av_free(data);
 }
 
-static int parse_fmtp_config(AVCodecContext *codec, char *value)
+static int parse_fmtp_config(AVCodecContext *codec, const char *value)
 {
     /* decode the hexa encoded parameter */
     int len = ff_hex_to_data(NULL, value);



More information about the ffmpeg-cvslog mailing list