diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-10-17 10:46:55 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-10-17 21:39:12 +0200 |
commit | 5ca298df2df80e9cb45a112386c1c5a847c288dd (patch) | |
tree | fc9b56637d36e4323fc568af2f6fdfc3838ac6f7 /doc | |
parent | 1f7962625cf3a0ac629788366721551e43714eb7 (diff) | |
download | ffmpeg-5ca298df2df80e9cb45a112386c1c5a847c288dd.tar.gz |
examples/muxing: remove misleading comment about pending API change
The API was never changed since 2003. Replace with a comment about the
performed operation.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/muxing.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c index 2b7170a597..78a079ec41 100644 --- a/doc/examples/muxing.c +++ b/doc/examples/muxing.c @@ -341,8 +341,7 @@ static void write_video_frame(AVFormatContext *oc, AVStream *st) } if (oc->oformat->flags & AVFMT_RAWPICTURE) { - /* Raw video case - the API will change slightly in the near - * future for that. */ + /* Raw video case - directly store the picture in the packet */ AVPacket pkt; av_init_packet(&pkt); |