diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-09-20 11:41:11 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-20 12:13:17 +0200 |
commit | 53d71335cb3652d3fe7936b3bd96418179402285 (patch) | |
tree | ccd6742e16bdb7903a6b0d1aa27c5b88f505b153 /libavdevice/version.h | |
parent | 98f753ec5198d4f74ba9f68cc85badf8a6257547 (diff) | |
download | ffmpeg-53d71335cb3652d3fe7936b3bd96418179402285.tar.gz |
lavd/lavfi: push frames until the last sink is EOF
Previously the device was returning EOF when the first sink was ending,
with the current change the device will continue to return frames until
all the sinks are EOF, which seems the most expected behavior.
Diffstat (limited to 'libavdevice/version.h')
-rw-r--r-- | libavdevice/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/version.h b/libavdevice/version.h index f2f6ce4653..d8aa94f174 100644 --- a/libavdevice/version.h +++ b/libavdevice/version.h @@ -29,7 +29,7 @@ #define LIBAVDEVICE_VERSION_MAJOR 54 #define LIBAVDEVICE_VERSION_MINOR 2 -#define LIBAVDEVICE_VERSION_MICRO 100 +#define LIBAVDEVICE_VERSION_MICRO 101 #define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \ LIBAVDEVICE_VERSION_MINOR, \ |