diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-05-21 11:41:37 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-05-23 06:46:17 +0200 |
commit | 14634429b915333f3612eaf41db3954222dc4aaf (patch) | |
tree | 3389e253c36be754f8f0eecbdf383463b49fc90d | |
parent | 74b1bf632f125a795e66e5fd0a060b9c7c55b7a3 (diff) | |
download | ffmpeg-14634429b915333f3612eaf41db3954222dc4aaf.tar.gz |
lavf: update muxing doxy
Describe the new AVCodecParameters API.
-rw-r--r-- | libavformat/avformat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index fbdfba4fb1..65c3d90d4b 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -191,15 +191,15 @@ * avio_open2() or a custom one. * - Unless the format is of the AVFMT_NOSTREAMS type, at least one stream must * be created with the avformat_new_stream() function. The caller should fill - * the @ref AVStream.codec "stream codec context" information, such as the - * codec @ref AVCodecContext.codec_type "type", @ref AVCodecContext.codec_id + * the @ref AVStream.codecpar "stream codec parameters" information, such as the + * codec @ref AVCodecParameters.codec_type "type", @ref AVCodecParameters.codec_id * "id" and other parameters (e.g. width / height, the pixel or sample format, * 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). * - It is advised to manually initialize only the relevant fields in - * AVCodecContext, rather than using @ref avcodec_copy_context() during + * AVCodecParameters, rather than using @ref avcodec_parameters_copy() during * remuxing: there is no guarantee that the codec context values remain valid * for both input and output format contexts. * - The caller may fill in additional information, such as @ref |