Fix a bunch of platform name and other typos.
This commit is contained in:
parent
cf53a2127b
commit
5ea20630b4
2
Doxyfile
2
Doxyfile
@ -864,7 +864,7 @@ HTML_DYNAMIC_SECTIONS = NO
|
|||||||
|
|
||||||
# If the GENERATE_DOCSET tag is set to YES, additional index files
|
# If the GENERATE_DOCSET tag is set to YES, additional index files
|
||||||
# will be generated that can be used as input for Apple's Xcode 3
|
# will be generated that can be used as input for Apple's Xcode 3
|
||||||
# integrated development environment, introduced with OSX 10.5 (Leopard).
|
# integrated development environment, introduced with OS X 10.5 (Leopard).
|
||||||
# To create a documentation set, doxygen will generate a Makefile in the
|
# To create a documentation set, doxygen will generate a Makefile in the
|
||||||
# HTML output directory. Running make will produce the docset in that
|
# HTML output directory. Running make will produce the docset in that
|
||||||
# directory and running "make install" will install the docset in
|
# directory and running "make install" will install the docset in
|
||||||
|
2
avplay.c
2
avplay.c
@ -2692,7 +2692,7 @@ static void toggle_full_screen(void)
|
|||||||
{
|
{
|
||||||
is_full_screen = !is_full_screen;
|
is_full_screen = !is_full_screen;
|
||||||
#if defined(__APPLE__) && SDL_VERSION_ATLEAST(1, 2, 14)
|
#if defined(__APPLE__) && SDL_VERSION_ATLEAST(1, 2, 14)
|
||||||
/* OSX needs to empty the picture_queue */
|
/* OS X needs to empty the picture_queue */
|
||||||
for (int i = 0; i < VIDEO_PICTURE_QUEUE_SIZE; i++) {
|
for (int i = 0; i < VIDEO_PICTURE_QUEUE_SIZE; i++) {
|
||||||
cur_stream->pictq[i].reallocate = 1;
|
cur_stream->pictq[i].reallocate = 1;
|
||||||
}
|
}
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -239,7 +239,7 @@ Advanced options (experts only):
|
|||||||
--disable-armvfp disable ARM VFP optimizations
|
--disable-armvfp disable ARM VFP optimizations
|
||||||
--disable-iwmmxt disable iwmmxt optimizations
|
--disable-iwmmxt disable iwmmxt optimizations
|
||||||
--disable-mmi disable MMI optimizations
|
--disable-mmi disable MMI optimizations
|
||||||
--disable-neon disable neon optimizations
|
--disable-neon disable NEON optimizations
|
||||||
--disable-vis disable VIS optimizations
|
--disable-vis disable VIS optimizations
|
||||||
--disable-yasm disable use of yasm assembler
|
--disable-yasm disable use of yasm assembler
|
||||||
--enable-pic build position-independent code
|
--enable-pic build position-independent code
|
||||||
|
@ -45,17 +45,17 @@ bash ./configure
|
|||||||
@end example
|
@end example
|
||||||
|
|
||||||
@anchor{Darwin}
|
@anchor{Darwin}
|
||||||
@section Darwin (OSX, iPhone)
|
@section Darwin (OS X, iPhone)
|
||||||
|
|
||||||
The toolchain provided with Xcode is sufficient to build the basic
|
The toolchain provided with Xcode is sufficient to build the basic
|
||||||
unacelerated code.
|
unacelerated code.
|
||||||
|
|
||||||
OSX on PowerPC or ARM (iPhone) requires a preprocessor from
|
OS X on PowerPC or ARM (iPhone) requires a preprocessor from
|
||||||
@url{http://github.com/yuvi/gas-preprocessor} to build the optimized
|
@url{http://github.com/yuvi/gas-preprocessor} to build the optimized
|
||||||
assembler functions. Just download the Perl script and put it somewhere
|
assembler functions. Just download the Perl script and put it somewhere
|
||||||
in your PATH, Libav's configure will pick it up automatically.
|
in your PATH, Libav's configure will pick it up automatically.
|
||||||
|
|
||||||
OSX on amd64 and x86 requires @command{yasm} to build most of the
|
OS X on AMD64 and x86 requires @command{yasm} to build most of the
|
||||||
optimized assembler functions @url{http://mxcl.github.com/homebrew/, Homebrew},
|
optimized assembler functions @url{http://mxcl.github.com/homebrew/, Homebrew},
|
||||||
@url{http://www.gentoo.org/proj/en/gentoo-alt/prefix/bootstrap-macos.xml, Gentoo Prefix}
|
@url{http://www.gentoo.org/proj/en/gentoo-alt/prefix/bootstrap-macos.xml, Gentoo Prefix}
|
||||||
or @url{http://www.macports.org, MacPorts} can easily provide it.
|
or @url{http://www.macports.org, MacPorts} can easily provide it.
|
||||||
|
@ -50,7 +50,7 @@ static void decode_mb(MpegEncContext *s, int ref){
|
|||||||
h->mb_xy= s->mb_x + s->mb_y*s->mb_stride;
|
h->mb_xy= s->mb_x + s->mb_y*s->mb_stride;
|
||||||
memset(h->non_zero_count_cache, 0, sizeof(h->non_zero_count_cache));
|
memset(h->non_zero_count_cache, 0, sizeof(h->non_zero_count_cache));
|
||||||
assert(ref>=0);
|
assert(ref>=0);
|
||||||
/* FIXME: It is posible albeit uncommon that slice references
|
/* FIXME: It is possible albeit uncommon that slice references
|
||||||
* differ between slices. We take the easy approach and ignore
|
* differ between slices. We take the easy approach and ignore
|
||||||
* it for now. If this turns out to have any relevance in
|
* it for now. If this turns out to have any relevance in
|
||||||
* practice then correct remapping should be added. */
|
* practice then correct remapping should be added. */
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Micrsoft RLE Video Decoder
|
* Microsoft RLE video decoder
|
||||||
* Copyright (C) 2003 the ffmpeg project
|
* Copyright (C) 2003 the ffmpeg project
|
||||||
*
|
*
|
||||||
* This file is part of Libav.
|
* This file is part of Libav.
|
||||||
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* MS RLE Video Decoder by Mike Melanson (melanson@pcisys.net)
|
* MS RLE video decoder by Mike Melanson (melanson@pcisys.net)
|
||||||
* For more information about the MS RLE format, visit:
|
* For more information about the MS RLE format, visit:
|
||||||
* http://www.pcisys.net/~melanson/codecs/
|
* http://www.pcisys.net/~melanson/codecs/
|
||||||
*
|
*
|
||||||
|
@ -67,7 +67,7 @@ $EGREP $OPT '^\+ *(const *|)static' $*| $EGREP --color=always '[^=]= *(0|NULL)[^
|
|||||||
cat $TMP
|
cat $TMP
|
||||||
hiegrep '# *ifdef * (HAVE|CONFIG)_' 'ifdefs that should be #if' $*
|
hiegrep '# *ifdef * (HAVE|CONFIG)_' 'ifdefs that should be #if' $*
|
||||||
|
|
||||||
hiegrep '\b(awnser|cant|dont|wont|usefull|successfull|occured|teh|alot|wether|skiped|heigth|informations|colums|loosy|loosing|seperate|preceed|upto|paket)\b' 'common typos' $*
|
hiegrep '\b(awnser|cant|dont|wont|usefull|successfull|occured|teh|alot|wether|skiped|heigth|informations|colums|loosy|loosing|seperate|preceed|upto|paket|posible)\b' 'common typos' $*
|
||||||
|
|
||||||
hiegrep 'av_log\( *NULL' 'Missing context in av_log' $*
|
hiegrep 'av_log\( *NULL' 'Missing context in av_log' $*
|
||||||
hiegrep '[^sn]printf' 'Please use av_log' $*
|
hiegrep '[^sn]printf' 'Please use av_log' $*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user