Browse code

doc: add entry for APNG demuxer where needed.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Benoit Fouet authored on 2014/11/25 18:03:12
Showing 3 changed files
... ...
@@ -16,6 +16,7 @@ version <next>:
16 16
 - creating DASH compatible fragmented MP4, MPEG-DASH segmenting muxer
17 17
 - WebP muxer with animated WebP support
18 18
 - zygoaudio decoding support
19
+- APNG demuxer
19 20
 
20 21
 
21 22
 version 2.4:
... ...
@@ -386,6 +386,7 @@ Muxers/Demuxers:
386 386
   aiffdec.c                             Baptiste Coudurier, Matthieu Bouron
387 387
   aiffenc.c                             Baptiste Coudurier, Matthieu Bouron
388 388
   ape.c                                 Kostya Shishkov
389
+  apngdec.c                             Benoit Fouet
389 390
   ass*                                  Aurelien Jacobs
390 391
   astdec.c                              Paul B Mahol
391 392
   astenc.c                              James Almer
... ...
@@ -29,6 +29,26 @@ the caller can decide which variant streams to actually receive.
29 29
 The total bitrate of the variant that the stream belongs to is
30 30
 available in a metadata key named "variant_bitrate".
31 31
 
32
+@section apng
33
+
34
+Animated Portable Network Graphics demuxer.
35
+
36
+This demuxer is used to demux APNG files.
37
+All headers, but the PNG signature, up to (but not including) the first
38
+fcTL chunk are transmitted as extradata.
39
+Frames are then split as being all the chunks between two fcTL ones, or
40
+between the last fcTL and IEND chunks.
41
+
42
+@table @option
43
+@item -ignore_loop @var{bool}
44
+Ignore the loop variable in the file if set.
45
+@item -max_fps @var{int}
46
+Maximum framerate in frames per second (0 for no limit).
47
+@item -default_fps @var{int}
48
+Default framerate in frames per second when none is specified in the file
49
+(0 meaning as fast as possible).
50
+@end table
51
+
32 52
 @section asf
33 53
 
34 54
 Advanced Systems Format demuxer.