diff options
author | Raphael Schlarb <info@raphael.schlarb.one> | 2023-03-30 14:27:41 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-03-31 08:46:29 -0300 |
commit | d2e1389285eb31581b3370508ddaf226f79148fe (patch) | |
tree | 17a45cc50f1f718d626e60f4d85788f968dcb849 /libavcodec/version.h | |
parent | 412d43b09a2e21c6c76ca87cc5f05a504a1fee1a (diff) | |
download | ffmpeg-d2e1389285eb31581b3370508ddaf226f79148fe.tar.gz |
avcodec/libfdk-accenc: Add option to set frame length when encoding with libfdk_aac
Some specifications require the size of ld/eld frames to be 480 samples
instead of the default 512. libfdk_aac provides an option to set an alternative
frame size, but it's not exposed via the ffmpeg interface.
This patch adds a frame_length option to solve this problem.
Signed-off-by: Raphael Schlarb <info@raphael.schlarb.one>
Reviewed-by: Martin Storsjö <martin@martin.st>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 7acb261bb3..ecb096f38b 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -30,7 +30,7 @@ #include "version_major.h" #define LIBAVCODEC_VERSION_MINOR 7 -#define LIBAVCODEC_VERSION_MICRO 100 +#define LIBAVCODEC_VERSION_MICRO 101 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |