summaryrefslogtreecommitdiff
path: root/libavcodec/internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-04 22:03:13 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-14 03:49:11 +0200
commit2fe186409bf3249669271502298bdc8844ce4e0b (patch)
tree022d6207d1427834763e3d5cb10b18c5e2338e68 /libavcodec/internal.h
parent0f03563d7ec757e10767303794e15c6dd15a8fc6 (diff)
lavc: skip initial silence when requested
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r--libavcodec/internal.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 49c1a18edf..993c42f089 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -84,6 +84,11 @@ typedef struct AVCodecInternal {
unsigned int byte_buffer_size;
void *frame_thread_encoder;
+
+ /**
+ * Number of audio samples to skip at the start of the next decoded frame
+ */
+ int skip_samples;
} AVCodecInternal;
struct AVCodecDefault {