[SCM] libav/experimental: Make ff_random_get_seed public, rename to av_get_random_seed, export the header

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:07:28 UTC 2013


The following commit has been merged in the experimental branch:
commit 576fb48e6dc8c75ece42fa7ede40f19de708b3f3
Author: Martin Storsjö <martin at martin.st>
Date:   Sun May 23 08:53:40 2010 +0000

    Make ff_random_get_seed public, rename to av_get_random_seed, export the header
    
    Keep an old ff_ named function for binary compatibility until the
    next major bump.
    
    Originally committed as revision 23254 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/ffserver.c b/ffserver.c
index 3cdcd88..7ec6eb4 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -4612,7 +4612,7 @@ int main(int argc, char **argv)
 
     unsetenv("http_proxy");             /* Kill the http_proxy */
 
-    av_lfg_init(&random_state, ff_random_get_seed());
+    av_lfg_init(&random_state, av_get_random_seed());
 
     memset(&sigact, 0, sizeof(sigact));
     sigact.sa_handler = handle_child_exit;
diff --git a/libavfilter/parseutils.c b/libavfilter/parseutils.c
index 9a7eef0..9ac61d8 100644
--- a/libavfilter/parseutils.c
+++ b/libavfilter/parseutils.c
@@ -218,7 +218,7 @@ static int color_table_compare(const void *lhs, const void *rhs)
 int av_parse_color(uint8_t *rgba_color, const char *color_string, void *log_ctx)
 {
     if (!strcasecmp(color_string, "random") || !strcasecmp(color_string, "bikeshed")) {
-        int rgba = ff_random_get_seed();
+        int rgba = av_get_random_seed();
         rgba_color[0] = rgba >> 24;
         rgba_color[1] = rgba >> 16;
         rgba_color[2] = rgba >> 8;
diff --git a/libavformat/httpauth.c b/libavformat/httpauth.c
index cef2756..abdee81 100644
--- a/libavformat/httpauth.c
+++ b/libavformat/httpauth.c
@@ -200,7 +200,7 @@ static char *make_digest_auth(HTTPAuthState *state, const char *username,
 
     /* Generate a client nonce. */
     for (i = 0; i < 2; i++)
-        cnonce_buf[i] = ff_random_get_seed();
+        cnonce_buf[i] = av_get_random_seed();
     ff_data_to_hex(cnonce, (const uint8_t*) cnonce_buf, sizeof(cnonce_buf), 1);
     cnonce[2*sizeof(cnonce_buf)] = 0;
 
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index ab38118..6ca7ee8 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -1389,7 +1389,7 @@ static uint64_t mxf_parse_timestamp(time_t timestamp)
 static void mxf_gen_umid(AVFormatContext *s)
 {
     MXFContext *mxf = s->priv_data;
-    uint32_t seed = ff_random_get_seed();
+    uint32_t seed = av_get_random_seed();
     uint64_t umid = seed + 0x5294713400000000LL;
 
     AV_WB64(mxf->umid  , umid);
diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c
index 5df101e..3111c2b 100644
--- a/libavformat/rtpenc.c
+++ b/libavformat/rtpenc.c
@@ -80,10 +80,10 @@ static int rtp_write_header(AVFormatContext *s1)
     if (s->payload_type < 0)
         s->payload_type = RTP_PT_PRIVATE + (st->codec->codec_type == AVMEDIA_TYPE_AUDIO);
 
-    s->base_timestamp = ff_random_get_seed();
+    s->base_timestamp = av_get_random_seed();
     s->timestamp = s->base_timestamp;
     s->cur_timestamp = 0;
-    s->ssrc = ff_random_get_seed();
+    s->ssrc = av_get_random_seed();
     s->first_packet = 1;
     s->first_rtcp_ntp_time = ff_ntp_time();
     if (s1->start_time_realtime)
diff --git a/libavutil/Makefile b/libavutil/Makefile
index 79506c0..6035ba6 100644
--- a/libavutil/Makefile
+++ b/libavutil/Makefile
@@ -19,6 +19,7 @@ HEADERS = adler32.h                                                     \
           mem.h                                                         \
           pixdesc.h                                                     \
           pixfmt.h                                                      \
+          random_seed.h                                                 \
           rational.h                                                    \
           sha1.h                                                        \
 
diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
index 236cadd..00d6317 100644
--- a/libavutil/random_seed.c
+++ b/libavutil/random_seed.c
@@ -22,8 +22,9 @@
 #include <fcntl.h>
 #include "timer.h"
 #include "random_seed.h"
+#include "avutil.h"
 
-uint32_t ff_random_get_seed(void)
+uint32_t av_get_random_seed(void)
 {
     uint32_t seed;
     int fd;
@@ -42,3 +43,11 @@ uint32_t ff_random_get_seed(void)
     // XXX what to do ?
     return seed;
 }
+
+#if LIBAVUTIL_VERSION_MAJOR < 51
+attribute_deprecated uint32_t ff_random_get_seed(void);
+uint32_t ff_random_get_seed(void)
+{
+    return av_get_random_seed();
+}
+#endif
diff --git a/libavutil/random_seed.h b/libavutil/random_seed.h
index a954381..11a9017 100644
--- a/libavutil/random_seed.h
+++ b/libavutil/random_seed.h
@@ -26,6 +26,6 @@
 /**
  * Gets a seed to use in conjunction with random functions.
  */
-uint32_t ff_random_get_seed(void);
+uint32_t av_get_random_seed(void);
 
 #endif /* AVUTIL_RANDOM_SEED_H */

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list