[FFmpeg-cvslog] avcodec/xpmdec: rename yet another function

Paul B Mahol git at videolan.org
Mon Mar 13 00:09:03 EET 2017


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Mar 12 22:43:49 2017 +0100| [fbc1f323dbda521a693737fd9d98ce1640e9a3de] | committer: Paul B Mahol

avcodec/xpmdec: rename yet another function

Signed-off-by: Paul B Mahol <onemda at gmail.com>

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

 libavcodec/xpmdec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/xpmdec.c b/libavcodec/xpmdec.c
index 7edb04c..25ef992 100644
--- a/libavcodec/xpmdec.c
+++ b/libavcodec/xpmdec.c
@@ -227,7 +227,7 @@ static size_t mod_strcspn(const char *string, const char *reject)
     return i;
 }
 
-static uint32_t hexstring_to_rgba(const char *p, int len)
+static uint32_t color_string_to_rgba(const char *p, int len)
 {
     uint32_t ret = 0xFF000000;
     const ColorEntry *entry;
@@ -378,7 +378,7 @@ static int xpm_decode_frame(AVCodecContext *avctx, void *data,
         if ((ret = ascii2index(index, cpp)) < 0)
             return ret;
 
-        x->pixels[ret] = hexstring_to_rgba(ptr, len);
+        x->pixels[ret] = color_string_to_rgba(ptr, len);
         ptr += mod_strcspn(ptr, ",") + 1;
     }
 



More information about the ffmpeg-cvslog mailing list