Browse code

lavf: bump minor and add an APIChanges entry for the last avio changes

Anton Khirnov authored on 2011/04/12 17:01:30
Showing 2 changed files
... ...
@@ -12,6 +12,38 @@ libavutil:   2009-03-08
12 12
 
13 13
 API changes, most recent first:
14 14
 
15
+2011-04-12 - lavf 52.107.0 - avio.h
16
+  Avio cleanup, part II - deprecate the entire URLContext API:
17
+    175389c add avio_check as a replacement for url_exist
18
+    ff1ec0c add avio_pause and avio_seek_time as replacements
19
+            for _av_url_read_fseek/fpause
20
+    cdc6a87 deprecate av_protocol_next(), avio_enum_protocols
21
+            should be used instead.
22
+    80c6e23 rename url_set_interrupt_cb->avio_set_interrupt_cb.
23
+    f87b1b3 rename open flags: URL_* -> AVIO_*
24
+    f8270bb add avio_enum_protocols.
25
+    5593f03 deprecate URLProtocol.
26
+    c486dad deprecate URLContext.
27
+    026e175 deprecate the typedef for URLInterruptCB
28
+    8e76a19 deprecate av_register_protocol2.
29
+    b840484 deprecate URL_PROTOCOL_FLAG_NESTED_SCHEME
30
+    1305d93 deprecate av_url_read_seek
31
+    fa104e1 deprecate av_url_read_pause
32
+    727c7aa deprecate url_get_filename().
33
+    5958df3 deprecate url_max_packet_size().
34
+    1869ea0 deprecate url_get_file_handle().
35
+    32a97d4 deprecate url_filesize().
36
+    e52a914 deprecate url_close().
37
+    58a48c6 deprecate url_seek().
38
+    925e908 deprecate url_write().
39
+    dce3756 deprecate url_read_complete().
40
+    bc371ac deprecate url_read().
41
+    0589da0 deprecate url_open().
42
+    62eaaea deprecate url_connect.
43
+    5652bb9 deprecate url_alloc.
44
+    333e894 deprecate url_open_protocol
45
+    e230705 deprecate url_poll and URLPollEntry
46
+
15 47
 2011-04-10 - lavu  50.40.0 - pixfmt.h
16 48
   Add PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats
17 49
 
... ...
@@ -24,7 +24,7 @@
24 24
 #include "libavutil/avutil.h"
25 25
 
26 26
 #define LIBAVFORMAT_VERSION_MAJOR 52
27
-#define LIBAVFORMAT_VERSION_MINOR 106
27
+#define LIBAVFORMAT_VERSION_MINOR 107
28 28
 #define LIBAVFORMAT_VERSION_MICRO  0
29 29
 
30 30
 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \