~siretart/xine-lib/ubuntu

« back to all changes in this revision

Viewing changes to src/libffmpeg/libavcodec/mpegaudio.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-12-15 13:13:45 UTC
  • mfrom: (0.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051215131345-8n4osv1j7fy9c1s1
* SECURITY UPDATE: Fix arbitrary code execution with crafted PNG images in
  embedded ffmpeg copy.
* src/libffmpeg/libavcodec/utils.c, avcodec_default_get_buffer(): Apply
  upstream patch to fix buffer overflow on decoding of small PIX_FMT_PAL8
  PNG files.
* References:
  CVE-2005-4048
  http://mplayerhq.hu/pipermail/ffmpeg-devel/2005-November/005333.html
  http://www1.mplayerhq.hu/cgi-bin/cvsweb.cgi/ffmpeg/libavcodec/
  utils.c.diff?r1=1.161&r2=1.162&cvsroot=FFMpeg

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#define MPA_DUAL    2
19
19
#define MPA_MONO    3
20
20
 
 
21
/* header + layer + bitrate + freq + lsf/mpeg25 */
 
22
#define SAME_HEADER_MASK \
 
23
   (0xffe00000 | (3 << 17) | (0xf << 12) | (3 << 10) | (3 << 19))
 
24
 
 
25
/* define USE_HIGHPRECISION to have a bit exact (but slower) mpeg
 
26
   audio decoder */
 
27
 
 
28
#ifdef USE_HIGHPRECISION
 
29
#define FRAC_BITS   23   /* fractional bits for sb_samples and dct */
 
30
#define WFRAC_BITS  16   /* fractional bits for window */
 
31
#else
 
32
#define FRAC_BITS   15   /* fractional bits for sb_samples and dct */
 
33
#define WFRAC_BITS  14   /* fractional bits for window */
 
34
#endif
 
35
 
 
36
#if defined(USE_HIGHPRECISION) && defined(CONFIG_AUDIO_NONSHORT)
 
37
typedef int32_t OUT_INT;
 
38
#define OUT_MAX INT32_MAX
 
39
#define OUT_MIN INT32_MIN
 
40
#define OUT_SHIFT (WFRAC_BITS + FRAC_BITS - 31)
 
41
#else
 
42
typedef int16_t OUT_INT;
 
43
#define OUT_MAX INT16_MAX
 
44
#define OUT_MIN INT16_MIN
 
45
#define OUT_SHIFT (WFRAC_BITS + FRAC_BITS - 15)
 
46
#endif
 
47
 
 
48
#if FRAC_BITS <= 15
 
49
typedef int16_t MPA_INT;
 
50
#else
 
51
typedef int32_t MPA_INT;
 
52
#endif
 
53
 
21
54
int l2_select_table(int bitrate, int nb_channels, int freq, int lsf);
22
55
int mpa_decode_header(AVCodecContext *avctx, uint32_t head);
 
56
void ff_mpa_synth_init(MPA_INT *window);
 
57
void ff_mpa_synth_filter(MPA_INT *synth_buf_ptr, int *synth_buf_offset,
 
58
                         MPA_INT *window, int *dither_state,
 
59
                         OUT_INT *samples, int incr,
 
60
                         int32_t sb_samples[SBLIMIT]);
23
61
 
24
62
extern const uint16_t mpa_bitrate_tab[2][3][15];
25
63
extern const uint16_t mpa_freq_tab[3];
29
67
extern const int quant_steps[17];
30
68
extern const int quant_bits[17];
31
69
extern const int32_t mpa_enwindow[257];
 
70
 
 
71
/* fast header check for resync */
 
72
static inline int ff_mpa_check_header(uint32_t header){
 
73
    /* header */
 
74
    if ((header & 0xffe00000) != 0xffe00000)
 
75
        return -1;
 
76
    /* layer check */
 
77
    if ((header & (3<<17)) == 0)
 
78
        return -1;
 
79
    /* bit rate */
 
80
    if ((header & (0xf<<12)) == 0xf<<12)
 
81
        return -1;
 
82
    /* frequency */
 
83
    if ((header & (3<<10)) == 3<<10)
 
84
        return -1;
 
85
    return 0;
 
86
}