diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-02-07 13:42:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-07 13:42:56 +0100 |
commit | d5518545d1b6df40d71e43dab8ada97710273db3 (patch) | |
tree | c23ddf81c2acfd057daca41582ee1404a1695c67 /libavcodec/h263.h | |
parent | 60a0bc46cdba5f13d557624d3448628328ad0fb0 (diff) | |
parent | ca1fe6c0e60808da45d4dfd8728f45e843b9f9b0 (diff) | |
download | ffmpeg-d5518545d1b6df40d71e43dab8ada97710273db3.tar.gz |
Merge commit 'ca1fe6c0e60808da45d4dfd8728f45e843b9f9b0'
* commit 'ca1fe6c0e60808da45d4dfd8728f45e843b9f9b0':
h263: remove an unused parameter from ff_h263_decode_init_vlc
flac: add channel layout masks for streams with 7 or 8 channels.
flac: don't check the number of channels before setting the channel layout.
Conflicts:
libavcodec/version.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h263.h')
-rw-r--r-- | libavcodec/h263.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263.h b/libavcodec/h263.h index 3cb06f387a..28d59ecc39 100644 --- a/libavcodec/h263.h +++ b/libavcodec/h263.h @@ -80,7 +80,7 @@ void ff_h263_encode_gob_header(MpegEncContext * s, int mb_line); int16_t *ff_h263_pred_motion(MpegEncContext * s, int block, int dir, int *px, int *py); void ff_h263_encode_init(MpegEncContext *s); -void ff_h263_decode_init_vlc(MpegEncContext *s); +void ff_h263_decode_init_vlc(void); int ff_h263_decode_picture_header(MpegEncContext *s); int ff_h263_decode_gob_header(MpegEncContext *s); void ff_h263_update_motion_val(MpegEncContext * s); |