Skip to content

Commit fb10b43

Browse files
committed
doc/examples: rename demuxing to demuxing_decoding.
That example shows how the decoding process works, not only the demuxing.
1 parent d10b1a2 commit fb10b43

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
/doc/avoptions_codec.texi
3737
/doc/avoptions_format.texi
3838
/doc/examples/decoding_encoding
39-
/doc/examples/demuxing
39+
/doc/examples/demuxing_decoding
4040
/doc/examples/filtering_audio
4141
/doc/examples/filtering_video
4242
/doc/examples/metadata

doc/examples/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
1212
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
1313

1414
EXAMPLES= decoding_encoding \
15-
demuxing \
15+
demuxing_decoding \
1616
filtering_video \
1717
filtering_audio \
1818
metadata \

doc/examples/demuxing.c doc/examples/demuxing_decoding.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222

2323
/**
2424
* @file
25-
* libavformat demuxing API use example.
25+
* Demuxing and decoding example.
2626
*
2727
* Show how to use the libavformat and libavcodec API to demux and
2828
* decode audio and video data.
29-
* @example doc/examples/demuxing.c
29+
* @example doc/examples/demuxing_decoding.c
3030
*/
3131

3232
#include <libavutil/imgutils.h>

0 commit comments

Comments
 (0)