diff options
author | James Almer <jamrial@gmail.com> | 2016-03-04 15:51:41 -0300 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-03-31 21:20:39 +0100 |
commit | 3fafde6cbe345d2f84cfe61b94d4a823990969b3 (patch) | |
tree | 51e21400ffe44edb735fe5300615630764726ada /libavcodec/avcodec.h | |
parent | e6053b3b19c070e994a501fe0cc20255d15c4aa8 (diff) | |
download | ffmpeg-3fafde6cbe345d2f84cfe61b94d4a823990969b3.tar.gz |
lavc: Add seek_preroll to AVCodecParameters
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 0d37083ee2..4e8d30c6b0 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3904,6 +3904,10 @@ typedef struct AVCodecParameters { * audio without any trailing padding. */ int trailing_padding; + /** + * Audio only. Number of samples to skip after a discontinuity. + */ + int seek_preroll; } AVCodecParameters; /** |