Changeset 21574c3af48d66e582466f1260175ba9c5f445f2
- Timestamp:
- 06/09/08 10:05:35
(3 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1212998735 +0200
- git-parent:
[25f84cd94c4174a3fccea9977c7b2e6e0390ba2e]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1212877914 +0200
- Message:
avformat is demux/mux. Move it to modules/demux/avformat.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r60e28dd |
r21574c3 |
|
| 5880 | 5880 | modules/demux/Makefile |
|---|
| 5881 | 5881 | modules/demux/asf/Makefile |
|---|
| | 5882 | modules/demux/avformat/Makefile |
|---|
| 5882 | 5883 | modules/demux/avi/Makefile |
|---|
| 5883 | 5884 | modules/demux/mp4/Makefile |
|---|
| r25f84cd |
r21574c3 |
|
| 18 | 18 | $(NULL) |
|---|
| 19 | 19 | |
|---|
| 20 | | SOURCES_avformat = \ |
|---|
| 21 | | avformat.c \ |
|---|
| 22 | | avformat.h \ |
|---|
| 23 | | demux.c \ |
|---|
| 24 | | avutil.h \ |
|---|
| 25 | | fourcc.h \ |
|---|
| 26 | | chroma.h \ |
|---|
| 27 | | $(NULL) |
|---|
| 28 | | |
|---|
| 29 | | if ENABLE_SOUT |
|---|
| 30 | | SOURCES_avformat += mux.c |
|---|
| 31 | | endif |
|---|
| 32 | | |
|---|
| 33 | | EXTRA_libavformat_plugin_la_SOURCES = \ |
|---|
| 34 | | mux.c \ |
|---|
| 35 | | $(NULL) |
|---|
| 36 | | |
|---|
| 37 | 20 | SOURCES_imgresample = \ |
|---|
| 38 | 21 | imgresample.c \ |
|---|
| … | … | |
| 45 | 28 | libvlc_LTLIBRARIES += \ |
|---|
| 46 | 29 | $(LTLIBavcodec) \ |
|---|
| 47 | | $(LTLIBavformat) \ |
|---|
| 48 | 30 | $(LTLIBimgresample) |
|---|
| 49 | 31 | |
|---|
| 50 | 32 | EXTRA_LTLIBRARIES += \ |
|---|
| 51 | 33 | libavcodec_plugin.la \ |
|---|
| 52 | | libavformat_plugin.la \ |
|---|
| 53 | 34 | libimgresample_plugin.la |
|---|
| 54 | 35 | |
|---|
| rbadb0cf |
r21574c3 |
|
| 1 | | SUBDIRS = asf avi mp4 mpeg playlist |
|---|
| | 1 | SUBDIRS = asf avformat avi mp4 mpeg playlist |
|---|
| 2 | 2 | SOURCES_a52sys = a52.c |
|---|
| 3 | 3 | SOURCES_dtssys = dts.c |
|---|