mirror of
https://github.com/mpv-player/mpv
synced 2025-03-21 10:51:51 +00:00
copy note on new demuxers and codecs to the top of the array as well to be
extra clear git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25904 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
4ceb92650a
commit
572d74b206
@ -49,6 +49,9 @@ extern vd_functions_t mpcodecs_vd_libdv;
|
||||
extern vd_functions_t mpcodecs_vd_lzo;
|
||||
extern vd_functions_t mpcodecs_vd_qtvideo;
|
||||
|
||||
/* Please do not add any new decoders here. If you want to implement a new
|
||||
* decoder, add it to libavcodec */
|
||||
|
||||
vd_functions_t* mpcodecs_vd_drivers[] = {
|
||||
&mpcodecs_vd_null,
|
||||
#ifdef USE_LIBAVCODEC
|
||||
|
@ -18,6 +18,9 @@ extern vf_info_t ve_info_qtvideo;
|
||||
extern vf_info_t ve_info_nuv;
|
||||
extern vf_info_t ve_info_x264;
|
||||
|
||||
/* Please do not add any new encoders here. If you want to implement a new
|
||||
* encoder, add it to libavcodec */
|
||||
|
||||
static vf_info_t* encoder_list[]={
|
||||
#ifdef USE_LIBAVCODEC
|
||||
&ve_info_lavc,
|
||||
|
@ -74,6 +74,9 @@ extern const demuxer_desc_t demuxer_desc_lavf_preferred;
|
||||
extern const demuxer_desc_t demuxer_desc_aac;
|
||||
extern const demuxer_desc_t demuxer_desc_nut;
|
||||
|
||||
/* Please do not add any new demuxers here. If you want to implement a new
|
||||
* demuxer, add it to libavformat */
|
||||
|
||||
const demuxer_desc_t* const demuxer_list[] = {
|
||||
&demuxer_desc_rawaudio,
|
||||
&demuxer_desc_rawvideo,
|
||||
|
Loading…
Reference in New Issue
Block a user