~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/h263.h

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include "mpegvideo.h"
27
27
#include "rl.h"
28
28
 
 
29
#if !FF_API_ASPECT_EXTENDED
 
30
#define FF_ASPECT_EXTENDED 15
 
31
#endif
 
32
 
29
33
// The defines below define the number of bits that are read at once for
30
34
// reading vlc values. Changing these may improve speed and data cache needs
31
35
// be aware though that decreasing them may need the number of stages that is
116
120
 
117
121
void ff_clean_h263_qscales(MpegEncContext *s);
118
122
int ff_h263_resync(MpegEncContext *s);
119
 
const uint8_t *ff_h263_find_resync_marker(MpegEncContext *s, const uint8_t *p, const uint8_t *end);
120
123
int ff_h263_get_gob_height(MpegEncContext *s);
121
124
void ff_h263_encode_motion(MpegEncContext * s, int val, int f_code);
122
125