diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-10-31 17:02:42 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-10-31 17:02:42 +0000 |
commit | 14d7d57c8e8610de8df48d6555015cbc0c2e7201 (patch) | |
tree | fb9d30867b57fd1f43d9fc4cfcae33c2562d207a | |
parent | 6e997d3073b211b9cb1a70cd06469a1b8011f082 (diff) | |
download | xine-lib-14d7d57c8e8610de8df48d6555015cbc0c2e7201.tar.gz xine-lib-14d7d57c8e8610de8df48d6555015cbc0c2e7201.tar.bz2 |
lower priority so that libmpeg2 is used again
CVS patchset: 3115
CVS date: 2002/10/31 17:02:42
-rw-r--r-- | src/libffmpeg/xine_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libffmpeg/xine_decoder.c b/src/libffmpeg/xine_decoder.c index af4af2552..76728a2d1 100644 --- a/src/libffmpeg/xine_decoder.c +++ b/src/libffmpeg/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.62 2002/10/31 05:26:46 tmmm Exp $ + * $Id: xine_decoder.c,v 1.63 2002/10/31 17:02:42 mroi Exp $ * * xine decoder plugin using ffmpeg * @@ -1004,12 +1004,12 @@ static uint32_t supported_audio_types[] = { static decoder_info_t dec_info_ffmpeg_video = { supported_video_types, /* supported types */ - 9 /* priority */ + 5 /* priority */ }; static decoder_info_t dec_info_ffmpeg_audio = { supported_audio_types, /* supported types */ - 9 /* priority */ + 5 /* priority */ }; plugin_info_t xine_plugin_info[] = { |