diff options
author | Thomas Volkert <thomas@homer-conferencing.com> | 2014-12-06 19:54:07 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-12-18 23:11:37 +0200 |
commit | a505c0d7373336a4cc5aa2022111c46bdd388b1f (patch) | |
tree | 1209231eab3ba771201b13e40b97f36b9496e2e5 /libavformat/version.h | |
parent | adc214e6797750285a5e62634b8521db521162ad (diff) | |
download | ffmpeg-a505c0d7373336a4cc5aa2022111c46bdd388b1f.tar.gz |
rtp: Initial H.261 support
The packetizer only supports splitting at GOB headers - if
such aren't available frequently enough, it splits at any
random byte offset (not at a macroblock boundary either, which
would be allowed by the spec) and sends a payload header pretend
that it starts with a GOB header.
As long as a receiver doesn't try to handle such cases cleverly
but just drops broken frames, this shouldn't matter too much
in practice.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index 16c5e2ebec..b2f5327186 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -30,8 +30,8 @@ #include "libavutil/version.h" #define LIBAVFORMAT_VERSION_MAJOR 56 -#define LIBAVFORMAT_VERSION_MINOR 7 -#define LIBAVFORMAT_VERSION_MICRO 2 +#define LIBAVFORMAT_VERSION_MINOR 8 +#define LIBAVFORMAT_VERSION_MICRO 0 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |