[FFmpeg-cvslog] avformat: update muxing doxy

Anton Khirnov git at videolan.org
Wed Jul 9 21:43:06 CEST 2014


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Jul  9 10:26:03 2014 +0000| [c9c1265c52910578d3db1a6205c85b91ead0903f] | committer: Anton Khirnov

avformat: update muxing doxy

The callers should now set the stream timebase, not the codec one.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c9c1265c52910578d3db1a6205c85b91ead0903f
---

 libavformat/avformat.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index d5736dc..2bc1df9 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -194,7 +194,7 @@
  *   the @ref AVStream.codec "stream codec context" information, such as the
  *   codec @ref AVCodecContext.codec_type "type", @ref AVCodecContext.codec_id
  *   "id" and other parameters (e.g. width / height, the pixel or sample format,
- *   etc.) as known. The @ref AVCodecContext.time_base "codec timebase" should
+ *   etc.) as known. The @ref AVStream.time_base "stream timebase" should
  *   be set to the timebase that the caller desires to use for this stream (note
  *   that the timebase actually used by the muxer can be different, as will be
  *   described later).
@@ -218,8 +218,8 @@
  * a single muxing context, they should not be mixed). Do note that the timing
  * information on the packets sent to the muxer must be in the corresponding
  * AVStream's timebase. That timebase is set by the muxer (in the
- * avformat_write_header() step) and may be different from the timebase the
- * caller set on the codec context.
+ * avformat_write_header() step) and may be different from the timebase
+ * requested by the caller.
  *
  * Once all the data has been written, the caller must call av_write_trailer()
  * to flush any buffered packets and finalize the output file, then close the IO



More information about the ffmpeg-cvslog mailing list