Browse Source

Change mplayerhq.hu references to ffmpeg.org where appropriate.

Originally committed as revision 16310 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
0fa5f24c3b
5 changed files with 8 additions and 8 deletions
  1. +4
    -4
      doc/faq.texi
  2. +1
    -1
      doc/general.texi
  3. +1
    -1
      doc/optimization.txt
  4. +1
    -1
      libavcodec/mlpdec.c
  5. +1
    -1
      libavcodec/utils.c

+ 4
- 4
doc/faq.texi View File

@@ -187,14 +187,14 @@ LGPL to GPL.
@section Why does the chrominance data seem to be sampled at a different time from the luminance data on bt8x8 captures on Linux? @section Why does the chrominance data seem to be sampled at a different time from the luminance data on bt8x8 captures on Linux?


This is a well-known bug in the bt8x8 driver. For 2.4.26 there is a patch at This is a well-known bug in the bt8x8 driver. For 2.4.26 there is a patch at
(@url{http://svn.mplayerhq.hu/michael/trunk/patches/bttv-420-2.4.26.patch?view=co}). This may also
(@url{http://svn.ffmpeg.org/michael/trunk/patches/bttv-420-2.4.26.patch?view=co}). This may also
apply cleanly to other 2.4-series kernels. apply cleanly to other 2.4-series kernels.


@section How do I avoid the ugly aliasing artifacts in bt8x8 captures on Linux? @section How do I avoid the ugly aliasing artifacts in bt8x8 captures on Linux?


Pass 'combfilter=1 lumafilter=1' to the bttv driver. Note though that 'combfilter=1' Pass 'combfilter=1 lumafilter=1' to the bttv driver. Note though that 'combfilter=1'
will cause somewhat too strong filtering. A fix is to apply (@url{http://svn.mplayerhq.hu/michael/trunk/patches/bttv-comb-2.4.26.patch?view=co})
or (@url{http://svn.mplayerhq.hu/michael/trunk/patches/bttv-comb-2.6.6.patch?view=co})
will cause somewhat too strong filtering. A fix is to apply (@url{http://svn.ffmpeg.org/michael/trunk/patches/bttv-comb-2.4.26.patch?view=co})
or (@url{http://svn.ffmpeg.org/michael/trunk/patches/bttv-comb-2.6.6.patch?view=co})
and pass 'combfilter=2'. and pass 'combfilter=2'.


@section -f jpeg doesn't work. @section -f jpeg doesn't work.
@@ -469,7 +469,7 @@ see @url{http://www.iversenit.dk/dev/ffmpeg-headers/}


@section Where is the documentation about ffv1, msmpeg4, asv1, 4xm? @section Where is the documentation about ffv1, msmpeg4, asv1, 4xm?


see @url{http://svn.mplayerhq.hu/michael/trunk/docs/}
see @url{http://svn.ffmpeg.org/michael/trunk/docs/}


@section How do I feed H.263-RTP (and other codecs in RTP) to libavcodec? @section How do I feed H.263-RTP (and other codecs in RTP) to libavcodec?




+ 1
- 1
doc/general.texi View File

@@ -1087,7 +1087,7 @@ do not attach several unrelated patches to the same mail.
If the patch fixes a bug, did you provide enough information, including If the patch fixes a bug, did you provide enough information, including
a sample, so the bug can be reproduced and the fix can be verified? a sample, so the bug can be reproduced and the fix can be verified?
Note please do not attach samples >100k to mails but rather provide a Note please do not attach samples >100k to mails but rather provide a
URL, you can upload to ftp://upload.mplayerhq.hu
URL, you can upload to ftp://upload.ffmpeg.org
@item @item
Did you provide a verbose summary about what the patch does change? Did you provide a verbose summary about what the patch does change?
@item @item


+ 1
- 1
doc/optimization.txt View File

@@ -18,7 +18,7 @@ As many functions tend to be a bit difficult to understand because
of optimizations, it can be hard to optimize them further, or write of optimizations, it can be hard to optimize them further, or write
architecture-specific versions. It is recommended to look at older architecture-specific versions. It is recommended to look at older
revisions of the interesting files (for a web frontend try ViewVC at revisions of the interesting files (for a web frontend try ViewVC at
http://svn.mplayerhq.hu/ffmpeg/trunk/).
http://svn.ffmpeg.org/ffmpeg/trunk/).
Alternatively, look into the other architecture-specific versions in Alternatively, look into the other architecture-specific versions in
the x86/, ppc/, alpha/ subdirectories. Even if you don't exactly the x86/, ppc/, alpha/ subdirectories. Even if you don't exactly
comprehend the instructions, it could help understanding the functions comprehend the instructions, it could help understanding the functions


+ 1
- 1
libavcodec/mlpdec.c View File

@@ -40,7 +40,7 @@


static const char* sample_message = static const char* sample_message =
"Please file a bug report following the instructions at " "Please file a bug report following the instructions at "
"http://ffmpeg.mplayerhq.hu/bugreports.html and include "
"http://ffmpeg.org/bugreports.html and include "
"a sample of this file."; "a sample of this file.";


typedef struct SubStream { typedef struct SubStream {


+ 1
- 1
libavcodec/utils.c View File

@@ -1518,7 +1518,7 @@ void ff_log_missing_feature(void *avc, const char *feature, int want_sample)
"been implemented.", feature); "been implemented.", feature);
if(want_sample) if(want_sample)
av_log(avc, AV_LOG_WARNING, " If you want to help, upload a sample " av_log(avc, AV_LOG_WARNING, " If you want to help, upload a sample "
"of this file to ftp://upload.mplayerhq.hu/MPlayer/incoming/ "
"of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
"and contact the FFmpeg-devel mailing list."); "and contact the FFmpeg-devel mailing list.");
av_log(avc, AV_LOG_WARNING, "\n"); av_log(avc, AV_LOG_WARNING, "\n");
} }

Loading…
Cancel
Save