summaryrefslogtreecommitdiff
path: root/libavdevice/version.h
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2022-06-29 21:24:28 +0200
committerTimo Rothenpieler <timo@rothenpieler.org>2022-07-18 00:32:55 +0200
commit6ca43a9675d651d7ea47c7ba2fafb1bf831c4d0b (patch)
treef65d30ad5e350e07844011d8d82e4e197502a7b3 /libavdevice/version.h
parent63ce42019c8097c568a8e9250460d45f344654eb (diff)
downloadffmpeg-6ca43a9675d651d7ea47c7ba2fafb1bf831c4d0b.tar.gz
avdevice/lavfi: output wrapped AVFrames
This avoids an extra copy of potentially quite big video frames. Instead of copying the entire frames data into a rawvideo packet it packs the frame into a wrapped avframe packet and passes it through as-is. Unfortunately, wrapped avframes are set up to be video frames, so the audio frames continue to be copied. Additionally, this enabled passing through video frames that previously were impossible to process, like hardware frames or other special formats that couldn't be packed into a rawvideo packet.
Diffstat (limited to 'libavdevice/version.h')
-rw-r--r--libavdevice/version.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/version.h b/libavdevice/version.h
index 42f163c96a..3e654fff89 100644
--- a/libavdevice/version.h
+++ b/libavdevice/version.h
@@ -30,7 +30,7 @@
#include "version_major.h"
#define LIBAVDEVICE_VERSION_MINOR 8
-#define LIBAVDEVICE_VERSION_MICRO 100
+#define LIBAVDEVICE_VERSION_MICRO 101
#define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \
LIBAVDEVICE_VERSION_MINOR, \