* [FFmpeg-devel] [PATCH] libavcodec/avcodec.h: fix typos in AVCodecContext.pkt_timebase description
@ 2023-04-02 18:05 Stefano Sabatini
2023-04-02 18:14 ` Stefano Sabatini
0 siblings, 1 reply; 4+ messages in thread
From: Stefano Sabatini @ 2023-04-02 18:05 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: Stefano Sabatini
---
libavcodec/avcodec.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 1e91b9cb53..dec5e40eac 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -1781,9 +1781,9 @@ typedef struct AVCodecContext {
enum AVPixelFormat sw_pix_fmt;
/**
- * Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
- * - encoding unused.
- * - decoding set by user.
+ * Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
+ * - encoding: unused.
+ * - decoding: set by user.
*/
AVRational pkt_timebase;
--
2.25.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] libavcodec/avcodec.h: fix typos in AVCodecContext.pkt_timebase description
2023-04-02 18:05 [FFmpeg-devel] [PATCH] libavcodec/avcodec.h: fix typos in AVCodecContext.pkt_timebase description Stefano Sabatini
@ 2023-04-02 18:14 ` Stefano Sabatini
2023-04-02 19:03 ` Stefano Sabatini
0 siblings, 1 reply; 4+ messages in thread
From: Stefano Sabatini @ 2023-04-02 18:14 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On date Sunday 2023-04-02 20:05:35 +0200, Stefano Sabatini wrote:
> ---
> libavcodec/avcodec.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
> index 1e91b9cb53..dec5e40eac 100644
> --- a/libavcodec/avcodec.h
> +++ b/libavcodec/avcodec.h
> @@ -1781,9 +1781,9 @@ typedef struct AVCodecContext {
> enum AVPixelFormat sw_pix_fmt;
>
> /**
> - * Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
> - * - encoding unused.
> - * - decoding set by user.
> + * Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
> + * - encoding: unused.
> + * - decoding: set by user.
> */
> AVRational pkt_timebase;
BTW, also I'm still confused by this field.
What happens in case it is not set? In this case I assume the
decoder/libavcodec will pick a suitable timebase which is directly set
in the decoded frames? Is the field internally set in this case, or
the information is only stored in the output frames?
How libavcodec detects if the field is set or not?
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] libavcodec/avcodec.h: fix typos in AVCodecContext.pkt_timebase description
2023-04-02 18:14 ` Stefano Sabatini
@ 2023-04-02 19:03 ` Stefano Sabatini
2023-04-12 19:55 ` Anton Khirnov
0 siblings, 1 reply; 4+ messages in thread
From: Stefano Sabatini @ 2023-04-02 19:03 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On date Sunday 2023-04-02 20:14:16 +0200, Stefano Sabatini wrote:
> On date Sunday 2023-04-02 20:05:35 +0200, Stefano Sabatini wrote:
> > ---
> > libavcodec/avcodec.h | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
> > index 1e91b9cb53..dec5e40eac 100644
> > --- a/libavcodec/avcodec.h
> > +++ b/libavcodec/avcodec.h
> > @@ -1781,9 +1781,9 @@ typedef struct AVCodecContext {
> > enum AVPixelFormat sw_pix_fmt;
> >
> > /**
> > - * Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
> > - * - encoding unused.
> > - * - decoding set by user.
> > + * Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
> > + * - encoding: unused.
> > + * - decoding: set by user.
> > */
> > AVRational pkt_timebase;
>
> BTW, also I'm still confused by this field.
>
> What happens in case it is not set? In this case I assume the
> decoder/libavcodec will pick a suitable timebase which is directly set
> in the decoded frames? Is the field internally set in this case, or
> the information is only stored in the output frames?
>
> How libavcodec detects if the field is set or not?
Also, is there any guarantee that the decoded frame time base should
be set based on the pkt_timebase value?
In practice this does not happen (so that I had to set the time_base
explicitly in the decoded frame in transcode.c). Is this expected or
the library should explicitly set the time_base in the decoded frames?
The latter is what I would expect.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] libavcodec/avcodec.h: fix typos in AVCodecContext.pkt_timebase description
2023-04-02 19:03 ` Stefano Sabatini
@ 2023-04-12 19:55 ` Anton Khirnov
0 siblings, 0 replies; 4+ messages in thread
From: Anton Khirnov @ 2023-04-12 19:55 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Quoting Stefano Sabatini (2023-04-02 21:03:21)
> On date Sunday 2023-04-02 20:14:16 +0200, Stefano Sabatini wrote:
> > On date Sunday 2023-04-02 20:05:35 +0200, Stefano Sabatini wrote:
> > > ---
> > > libavcodec/avcodec.h | 6 +++---
> > > 1 file changed, 3 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
> > > index 1e91b9cb53..dec5e40eac 100644
> > > --- a/libavcodec/avcodec.h
> > > +++ b/libavcodec/avcodec.h
> > > @@ -1781,9 +1781,9 @@ typedef struct AVCodecContext {
> > > enum AVPixelFormat sw_pix_fmt;
> > >
> > > /**
> > > - * Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
> > > - * - encoding unused.
> > > - * - decoding set by user.
> > > + * Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
> > > + * - encoding: unused.
> > > + * - decoding: set by user.
> > > */
> > > AVRational pkt_timebase;
> >
> > BTW, also I'm still confused by this field.
> >
> > What happens in case it is not set?
The majority of decoding code treats timestamps as opaque numbers, they
are simply copied from packets to their corresponding frames. You don't
need to know the timebase to do that.
> > In this case I assume the decoder/libavcodec will pick a suitable
> > timebase which is directly set in the decoded frames? Is the field
> > internally set in this case, or the information is only stored in
> > the output frames?
Some code does more involved timestamp manipulation, e.g. adjusting
timestamps after skipping audio samples. When the timebase is not known,
this manipulation is just not done.
> > How libavcodec detects if the field is set or not?
By num&den being >0.
>
> Also, is there any guarantee that the decoded frame time base should
> be set based on the pkt_timebase value?
> In practice this does not happen (so that I had to set the time_base
> explicitly in the decoded frame in transcode.c). Is this expected or
> the library should explicitly set the time_base in the decoded frames?
> The latter is what I would expect.
AVFrame/AVPacket.time_base were added quite recently and (to avoid
surprises for the API users) the libraries do not use them yet. If and
when that changes, it will probably require explicit opt-in from the
caller.
I've also recently started using them in ffmpeg CLI.
--
Anton Khirnov
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-04-12 19:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-02 18:05 [FFmpeg-devel] [PATCH] libavcodec/avcodec.h: fix typos in AVCodecContext.pkt_timebase description Stefano Sabatini
2023-04-02 18:14 ` Stefano Sabatini
2023-04-02 19:03 ` Stefano Sabatini
2023-04-12 19:55 ` Anton Khirnov
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git