[FFmpeg-cvslog] r24001 - trunk/libavcodec/avcodec.h

Aurelien Jacobs aurel
Fri Jul 2 21:27:29 CEST 2010


On Fri, Jul 02, 2010 at 09:42:27PM +0530, Jai Menon wrote:
> On Fri, Jul 2, 2010 at 9:26 PM, aurel <subversion at mplayerhq.hu> wrote:
> > Author: aurel
> > Date: Fri Jul ?2 17:56:38 2010
> > New Revision: 24001
> >
> > Log:
> > clarify convergence_duration documentation
> >
> > Modified:
> > ? trunk/libavcodec/avcodec.h
> >
> > Modified: trunk/libavcodec/avcodec.h
> > ==============================================================================
> > --- trunk/libavcodec/avcodec.h ?Fri Jul ?2 17:49:25 2010 ? ? ? ?(r24000)
> > +++ trunk/libavcodec/avcodec.h ?Fri Jul ?2 17:56:38 2010 ? ? ? ?(r24001)
> > @@ -995,6 +995,7 @@ typedef struct AVPacket {
> > ? ? ?* the very first frame or from this keyframe.
> > ? ? ?* Is AV_NOPTS_VALUE if unknown.
> > ? ? ?* This field is not the display duration of the current packet.
> > + ? ? * This field has no meaning if the packet do not have AV_PKT_FLAG_KEY.
> > ? ? ?*
> > ? ? ?* The purpose of this field is to allow seeking in streams that have no
> > ? ? ?* keyframes in the conventional sense. It corresponds to the
> > @@ -3692,6 +3693,7 @@ typedef struct AVCodecParserContext {
> > ? ? ?* the very first frame or from this keyframe.
> > ? ? ?* Is AV_NOPTS_VALUE if unknown.
> > ? ? ?* This field is not the display duration of the current frame.
> > + ? ? * This field has no meaning if the packet do not have AV_PKT_FLAG_KEY.
> > ? ? ?*
> > ? ? ?* The purpose of this field is to allow seeking in streams that have no
> > ? ? ?* keyframes in the conventional sense. It corresponds to the
> 
> maybe attached is better grammar?
> 
> Index: libavcodec/avcodec.h
> ===================================================================
> --- libavcodec/avcodec.h	(revision 24002)
> +++ libavcodec/avcodec.h	(working copy)
> @@ -995,7 +995,7 @@
>       * the very first frame or from this keyframe.
>       * Is AV_NOPTS_VALUE if unknown.
>       * This field is not the display duration of the current packet.
> -     * This field has no meaning if the packet do not have AV_PKT_FLAG_KEY.
> +     * This field has no meaning if the packet does not have AV_PKT_FLAG_KEY set.
>       *
>       * The purpose of this field is to allow seeking in streams that have no
>       * keyframes in the conventional sense. It corresponds to the
> @@ -3693,7 +3693,7 @@
>       * the very first frame or from this keyframe.
>       * Is AV_NOPTS_VALUE if unknown.
>       * This field is not the display duration of the current frame.
> -     * This field has no meaning if the packet do not have AV_PKT_FLAG_KEY.
> +     * This field has no meaning if the packet does not have AV_PKT_FLAG_KEY set.
>       *
>       * The purpose of this field is to allow seeking in streams that have no
>       * keyframes in the conventional sense. It corresponds to the

Indeed. Thanks. Fixed.

Aurel



More information about the ffmpeg-cvslog mailing list