[SCM] libav/experimental: Move the definitions of AVSEEK_SIZE to make it appear before the description of url_seek(), which references it.

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


The following commit has been merged in the experimental branch:
commit 85c15960b490a55fdf0925fc0289ff278bb99bc1
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Wed Oct 6 18:42:46 2010 +0000

    Move the definitions of AVSEEK_SIZE to make it appear before the
    description of url_seek(), which references it.
    
    Originally committed as revision 25376 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/avio.h b/libavformat/avio.h
index 223bb43..118b7f2 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -135,6 +135,13 @@ int url_read_complete(URLContext *h, unsigned char *buf, int size);
 int url_write(URLContext *h, const unsigned char *buf, int size);
 
 /**
+ * Passing this as the "whence" parameter to a seek function causes it to
+ * return the filesize without seeking anywhere. Supporting this is optional.
+ * If it is not supported then the seek function will return <0.
+ */
+#define AVSEEK_SIZE 0x10000
+
+/**
  * Change the position that will be used by the next read/write
  * operation on the resource accessed by h.
  *
@@ -237,13 +244,6 @@ int64_t av_url_read_seek(URLContext *h, int stream_index,
                          int64_t timestamp, int flags);
 
 /**
- * Passing this as the "whence" parameter to a seek function causes it to
- * return the filesize without seeking anywhere. Supporting this is optional.
- * If it is not supported then the seek function will return <0.
- */
-#define AVSEEK_SIZE 0x10000
-
-/**
  * Oring this flag as into the "whence" parameter to a seek function causes it to
  * seek by any means (like reopening and linear reading) or other normally unreasonble
  * means that can be extreemly slow.

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list