examples: rename avcodec.c to decoding_encoding.c

Restore the old name, which was more meaningful and consistent with the
names of the other examples.
This commit is contained in:
Stefano Sabatini 2014-04-01 11:12:51 +02:00
parent dc6a17cf74
commit bf411fffd4
4 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -36,7 +36,7 @@
/doc/avoptions_format.texi
/doc/doxy/html/
/doc/examples/avio_reading
/doc/examples/avcodec
/doc/examples/decoding_encoding
/doc/examples/demuxing_decoding
/doc/examples/filter_audio
/doc/examples/filtering_audio

2
configure vendored
View File

@ -1284,7 +1284,7 @@ COMPONENT_LIST="
EXAMPLE_LIST="
avio_reading_example
avcodec_example
decoding_encoding_example
demuxing_decoding_example
filter_audio_example
filtering_audio_example

View File

@ -12,7 +12,7 @@ CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
EXAMPLES= avio_reading \
avcodec \
decoding_encoding \
demuxing_decoding \
filtering_video \
filtering_audio \

View File

@ -24,7 +24,7 @@
* @file
* libavcodec API use example.
*
* @example avcodec.c
* @example decoding_encoding.c
* Note that libavcodec only handles codecs (mpeg, mpeg4, etc...),
* not file formats (avi, vob, mp4, mov, mkv, mxf, flv, mpegts, mpegps, etc...). See library 'libavformat' for the
* format handling