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
h261: Move ff_h261_rl_table_store declaration to header file
tags/n2.0
Diego Biurrun
12 years ago
parent
28a807e28b
commit
ae35d91d44
3 changed files
with
2 additions
and
4 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
libavcodec/h261.h
+0
-2
libavcodec/h261dec.c
+0
-2
libavcodec/h261enc.c
+ 2
- 0
libavcodec/h261.h
View File
@@ -48,4 +48,6 @@ typedef struct H261Context{
#define MB_TYPE_H261_FIL 0x800000
#define MB_TYPE_H261_FIL 0x800000
extern uint8_t ff_h261_rl_table_store[2][2*MAX_RUN + MAX_LEVEL + 3];
#endif /* AVCODEC_H261_H */
#endif /* AVCODEC_H261_H */
+ 0
- 2
libavcodec/h261dec.c
View File
@@ -39,8 +39,6 @@
#define MBA_STUFFING 33
#define MBA_STUFFING 33
#define MBA_STARTCODE 34
#define MBA_STARTCODE 34
extern uint8_t ff_h261_rl_table_store[2][2*MAX_RUN + MAX_LEVEL + 3];
static VLC h261_mba_vlc;
static VLC h261_mba_vlc;
static VLC h261_mtype_vlc;
static VLC h261_mtype_vlc;
static VLC h261_mv_vlc;
static VLC h261_mv_vlc;
+ 0
- 2
libavcodec/h261enc.c
View File
@@ -31,8 +31,6 @@
#include "h261.h"
#include "h261.h"
#include "h261data.h"
#include "h261data.h"
extern uint8_t ff_h261_rl_table_store[2][2*MAX_RUN + MAX_LEVEL + 3];
static void h261_encode_block(H261Context * h, int16_t * block,
static void h261_encode_block(H261Context * h, int16_t * block,
int n);
int n);
Write
Preview
Loading…
Cancel
Save