Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
66ac3dbf
Commit
66ac3dbf
authored
Apr 03, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h261: Move function declarations to h261.h
parent
ed16c2db
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
h261.h
libavcodec/h261.h
+9
-0
mpegvideo.h
libavcodec/mpegvideo.h
+0
-11
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+1
-0
mpegvideo_motion.c
libavcodec/mpegvideo_motion.c
+1
-0
No files found.
libavcodec/h261.h
View file @
66ac3dbf
...
@@ -50,4 +50,13 @@ typedef struct H261Context{
...
@@ -50,4 +50,13 @@ typedef struct H261Context{
extern
uint8_t
ff_h261_rl_table_store
[
2
][
2
*
MAX_RUN
+
MAX_LEVEL
+
3
];
extern
uint8_t
ff_h261_rl_table_store
[
2
][
2
*
MAX_RUN
+
MAX_LEVEL
+
3
];
void
ff_h261_loop_filter
(
MpegEncContext
*
s
);
int
ff_h261_get_picture_format
(
int
width
,
int
height
);
void
ff_h261_reorder_mb_index
(
MpegEncContext
*
s
);
void
ff_h261_encode_mb
(
MpegEncContext
*
s
,
int16_t
block
[
6
][
64
],
int
motion_x
,
int
motion_y
);
void
ff_h261_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
void
ff_h261_encode_init
(
MpegEncContext
*
s
);
#endif
/* AVCODEC_H261_H */
#endif
/* AVCODEC_H261_H */
libavcodec/mpegvideo.h
View file @
66ac3dbf
...
@@ -895,17 +895,6 @@ extern const uint8_t ff_aic_dc_scale_table[32];
...
@@ -895,17 +895,6 @@ extern const uint8_t ff_aic_dc_scale_table[32];
extern
const
uint8_t
ff_h263_chroma_qscale_table
[
32
];
extern
const
uint8_t
ff_h263_chroma_qscale_table
[
32
];
extern
const
uint8_t
ff_h263_loop_filter_strength
[
32
];
extern
const
uint8_t
ff_h263_loop_filter_strength
[
32
];
/* h261.c */
void
ff_h261_loop_filter
(
MpegEncContext
*
s
);
void
ff_h261_reorder_mb_index
(
MpegEncContext
*
s
);
void
ff_h261_encode_mb
(
MpegEncContext
*
s
,
int16_t
block
[
6
][
64
],
int
motion_x
,
int
motion_y
);
void
ff_h261_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
void
ff_h261_encode_init
(
MpegEncContext
*
s
);
int
ff_h261_get_picture_format
(
int
width
,
int
height
);
/* rv10.c */
/* rv10.c */
void
ff_rv10_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
void
ff_rv10_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
int
ff_rv_decode_dc
(
MpegEncContext
*
s
,
int
n
);
int
ff_rv_decode_dc
(
MpegEncContext
*
s
,
int
n
);
...
...
libavcodec/mpegvideo_enc.c
View file @
66ac3dbf
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
#include "dsputil.h"
#include "dsputil.h"
#include "mpeg12.h"
#include "mpeg12.h"
#include "mpegvideo.h"
#include "mpegvideo.h"
#include "h261.h"
#include "h263.h"
#include "h263.h"
#include "mathops.h"
#include "mathops.h"
#include "mjpegenc.h"
#include "mjpegenc.h"
...
...
libavcodec/mpegvideo_motion.c
View file @
66ac3dbf
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#include "libavutil/internal.h"
#include "libavutil/internal.h"
#include "avcodec.h"
#include "avcodec.h"
#include "dsputil.h"
#include "dsputil.h"
#include "h261.h"
#include "mpegvideo.h"
#include "mpegvideo.h"
#include "mjpegenc.h"
#include "mjpegenc.h"
#include "msmpeg4.h"
#include "msmpeg4.h"
...
...
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