diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2007-06-04 20:48:04 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2007-06-04 20:48:04 +0000 |
commit | 05abfce9a9fe7f0ce12cce18a440af0ef97af698 (patch) | |
tree | 5d5723cbc999a745caf9197e1281bde2946e1a4c | |
parent | 659596f0029e7e8aae5ca03d771895f696cfc225 (diff) | |
download | ffmpeg-05abfce9a9fe7f0ce12cce18a440af0ef97af698.tar.gz |
Doxygenize av_init_packet
Originally committed as revision 9212 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avformat.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 51dbca3b1f..e13d853453 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -56,7 +56,11 @@ void av_destruct_packet_nofree(AVPacket *pkt); */ void av_destruct_packet(AVPacket *pkt); -/* initialize optional fields of a packet */ +/** + * Initialize optional fields of a packet to default values. + * + * @param pkt packet + */ void av_init_packet(AVPacket *pkt); /** |