This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Use proper "" quotes for local header #includes
tags/n1.2
Diego Biurrun
12 years ago
parent
4eef2ed707
commit
6c1a7d07eb
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/arm/videodsp_init_armv5te.c
+1
-1
libavcodec/kbdwin.c
+1
-1
libavformat/rtp.c
+ 1
- 1
libavcodec/arm/videodsp_init_armv5te.c
View File
@@ -19,7 +19,7 @@
*/
#include "libavutil/arm/cpu.h"
#include
<libavcodec/videodsp.h>
#include
"libavcodec/videodsp.h"
#include "videodsp_arm.h"
void ff_prefetch_arm(uint8_t *mem, ptrdiff_t stride, int h);
+ 1
- 1
libavcodec/kbdwin.c
View File
@@ -17,7 +17,7 @@
*/
#include <assert.h>
#include
<libavutil/mathematics.h>
#include
"libavutil/mathematics.h"
#include "libavutil/attributes.h"
#include "kbdwin.h"
+ 1
- 1
libavformat/rtp.c
View File
@@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include
<libavutil/opt.h>
#include
"libavutil/opt.h"
#include "avformat.h"
#include "rtp.h"
Write
Preview
Loading…
Cancel
Save