Re: [libav-devel] [PATCH] flvdec: read index stored in the 'keyframes' tag.

2011-03-30 Thread Anton Khirnov
On Wed, Mar 30, 2011 at 08:23:50PM +0200, Luca Barbato wrote: > On 03/30/2011 03:56 PM, Anton Khirnov wrote: > > From: Kharkov Alexander > > > > 'keyframes' metatag is not part of the standard, it is just > > convention to use such kind of metatag information for indexing. > > Structure is follow

Re: [libav-devel] [PATCH] flvdec: read index stored in the 'keyframes' tag.

2011-03-30 Thread Luca Barbato
On 03/30/2011 03:56 PM, Anton Khirnov wrote: > From: Kharkov Alexander > > 'keyframes' metatag is not part of the standard, it is just > convention to use such kind of metatag information for indexing. > Structure is following, it allows to have it inconsistent: > keyframes: > times (array): >

[libav-devel] [PATCH] flvdec: read index stored in the 'keyframes' tag.

2011-03-30 Thread Anton Khirnov
From: Kharkov Alexander 'keyframes' metatag is not part of the standard, it is just convention to use such kind of metatag information for indexing. Structure is following, it allows to have it inconsistent: keyframes: times (array): time0 (num) time1 (num) time2 (num) filepositions (arra

[libav-devel] [PATCH] flvdec: read index stored in the 'keyframes' tag.

2011-03-26 Thread Anton Khirnov
From: Kharkov Alexander 'keyframes' metatag is not part of the standard, it is just convention to use such kind of metatag information for indexing. Structure is following, it allows to have it inconsistent: keyframes: times (array): time0 (num) time1 (num) time2 (num) filepositions (arra

Re: [libav-devel] [PATCH] flvdec: read index stored in the 'keyframes' tag.

2011-03-25 Thread Luca Barbato
On 03/25/2011 07:06 PM, Anton Khirnov wrote: > From: Kharkov Alexander > Shorter lines might be welcome, > + * 'keyframes' metatag is not part of standart it is just > + * convention to use such kind of metatag information for indexing, but > + * nobody can prevent end user to crea

[libav-devel] [PATCH] flvdec: read index stored in the 'keyframes' tag.

2011-03-25 Thread Anton Khirnov
From: Kharkov Alexander --- libavformat/flvdec.c | 78 ++ 1 files changed, 78 insertions(+), 0 deletions(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 2152f7d..0a93fc7 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvde