Browse Source

move relevant declarations to mpeg12data.h

Originally committed as revision 12320 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 18 years ago
parent
commit
3bfe9260fa
2 changed files with 8 additions and 4 deletions
  1. +7
    -1
      libavcodec/mpeg12data.h
  2. +1
    -3
      libavcodec/mpegvideo.h

+ 7
- 1
libavcodec/mpeg12data.h View File

@@ -29,7 +29,11 @@
#define FFMPEG_MPEG12DATA_H

#include <stdint.h>
#include "mpegvideo.h"
#include "rational.h"
#include "rl.h"

extern const uint16_t ff_mpeg1_default_intra_matrix[64];
extern const uint16_t ff_mpeg1_default_non_intra_matrix[64];

extern const uint16_t ff_mpeg12_vlc_dc_lum_code[12];
extern const unsigned char ff_mpeg12_vlc_dc_lum_bits[12];
@@ -44,6 +48,8 @@ extern const uint8_t ff_mpeg12_mbPatTable[64][2];

extern const uint8_t ff_mpeg12_mbMotionVectorTable[17][2];

extern const AVRational ff_frame_rate_tab[];

extern const float ff_mpeg1_aspect[16];
extern const AVRational ff_mpeg2_aspect[16];



+ 1
- 3
libavcodec/mpegvideo.h View File

@@ -32,6 +32,7 @@
#include "bitstream.h"
#include "ratecontrol.h"
#include "parser.h"
#include "mpeg12data.h"
#include "rl.h"

#define FRAME_SKIPPED 100 ///< return value for header parsers if frame is not coded
@@ -758,10 +759,7 @@ int ff_get_mb_score(MpegEncContext * s, int mx, int my, int src_index,
int ref_index, int size, int h, int add_rate);

/* mpeg12.c */
extern const uint16_t ff_mpeg1_default_intra_matrix[64];
extern const uint16_t ff_mpeg1_default_non_intra_matrix[64];
extern const uint8_t ff_mpeg1_dc_scale_table[128];
extern const AVRational ff_frame_rate_tab[];

void mpeg1_encode_picture_header(MpegEncContext *s, int picture_number);
void mpeg1_encode_mb(MpegEncContext *s,


Loading…
Cancel
Save