Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
3be78f7e
Commit
3be78f7e
authored
Jan 14, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hack libmpcodecs to make it buildable.
parent
8e45c103
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
7 deletions
+17
-7
video_out.h
libavfilter/libmpcodecs/libvo/video_out.h
+1
-1
mp_image.c
libavfilter/libmpcodecs/mp_image.c
+3
-3
mp_image.h
libavfilter/libmpcodecs/mp_image.h
+10
-0
vf.h
libavfilter/libmpcodecs/vf.h
+3
-3
No files found.
libavfilter/libmpcodecs/libvo/video_out.h
View file @
3be78f7e
...
...
@@ -27,7 +27,7 @@
#include <stdarg.h>
//#include "sub/font_load.h"
#include "
libmpcodecs
/img_format.h"
#include "
..
/img_format.h"
//#include "vidix/vidix.h"
#define VO_EVENT_EXPOSE 1
...
...
libavfilter/libmpcodecs/mp_image.c
View file @
3be78f7e
...
...
@@ -26,11 +26,11 @@
#include <malloc.h>
#endif
#include "
libmpcodecs/
img_format.h"
#include "
libmpcodecs/
mp_image.h"
#include "img_format.h"
#include "mp_image.h"
#include "libvo/fastmemcpy.h"
#include "libavutil/mem.h"
//
#include "libavutil/mem.h"
void
mp_image_alloc_planes
(
mp_image_t
*
mpi
)
{
// IF09 - allocate space for 4. plane delta info - unused
...
...
libavfilter/libmpcodecs/mp_image.h
View file @
3be78f7e
...
...
@@ -22,7 +22,17 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#undef printf //FIXME
#undef fprintf //FIXME
#include "mp_msg.h"
#include "libavutil/avutil.h"
#include "libavutil/avassert.h"
#undef realloc
#undef malloc
#undef free
#undef rand
#undef srand
#undef printf
//--------- codec's requirements (filled by the codec/vf) ---------
...
...
libavfilter/libmpcodecs/vf.h
View file @
3be78f7e
...
...
@@ -19,11 +19,11 @@
#ifndef MPLAYER_VF_H
#define MPLAYER_VF_H
#include "m_option.h"
//
#include "m_option.h"
#include "mp_image.h"
extern
m_obj_settings_t
*
vf_settings
;
extern
const
m_obj_list_t
vf_obj_list
;
//
extern m_obj_settings_t* vf_settings;
//
extern const m_obj_list_t vf_obj_list;
struct
vf_instance
;
struct
vf_priv_s
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment