Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-05-19 22:31:24 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-05-19 22:31:24 +0400
commit040a796dab2721abbbeceb3df8368e59254d6827 (patch)
treeecc911ba7a60b4d8f083bbffb4c1362bd62065ad /libavfilter/audio.c
parent612abe2773e72cc3942069c104294ab2223338eb (diff)
parent755cd4197d53946208e042f095b930dca18d9430 (diff)
Merge commit '755cd4197d53946208e042f095b930dca18d9430'
* commit '755cd4197d53946208e042f095b930dca18d9430': mov: enable parsing for VC-1. lavfi: Add fps filter. lavfi: initialize pts to AV_NOPTS_VALUE when creating new buffer refs. avconv: add support for audio in complex filtergraphs. Conflicts: ffmpeg.c libavfilter/version.h libavformat/mov.c tests/ref/fate/vc1-ism Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/audio.c')
-rw-r--r--libavfilter/audio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/audio.c b/libavfilter/audio.c
index f8b11fc9cb..0616f97551 100644
--- a/libavfilter/audio.c
+++ b/libavfilter/audio.c
@@ -133,6 +133,8 @@ AVFilterBufferRef* avfilter_get_audio_buffer_ref_from_arrays(uint8_t **data,
samplesref->extended_data = samplesref->data;
}
+ samplesref->pts = AV_NOPTS_VALUE;
+
return samplesref;
fail: