diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-09-12 16:07:57 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-09-12 16:07:57 +0000 |
commit | 119103cdea84269889c852d2451d7aef4fb3be6c (patch) | |
tree | 5d921a34dfb02bfef46b9f094dfdc49287f152d9 /src/libffmpeg | |
parent | 32ff8fcf58f950d4e5ce615a0fc4af33d65f9713 (diff) | |
download | xine-lib-119103cdea84269889c852d2451d7aef4fb3be6c.tar.gz xine-lib-119103cdea84269889c852d2451d7aef4fb3be6c.tar.bz2 |
add missing bracket (only in the text, no compilation problem)
CVS patchset: 6967
CVS date: 2004/09/12 16:07:57
Diffstat (limited to 'src/libffmpeg')
-rw-r--r-- | src/libffmpeg/video_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libffmpeg/video_decoder.c b/src/libffmpeg/video_decoder.c index 4b2a4249d..71dd359cf 100644 --- a/src/libffmpeg/video_decoder.c +++ b/src/libffmpeg/video_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_decoder.c,v 1.29 2004/09/12 15:43:23 jstembridge Exp $ + * $Id: video_decoder.c,v 1.30 2004/09/12 16:07:57 mroi Exp $ * * xine video decoder plugin using ffmpeg * @@ -692,7 +692,7 @@ static const ff_codec_t ff_video_lookup[] = { {BUF_VIDEO_ATIVCR1, CODEC_ID_VCR1, "ATI VCR-1 (ffmpeg)"}, {BUF_VIDEO_FLV1, CODEC_ID_FLV1, "Flash Video (ffmpeg)"}, {BUF_VIDEO_QTRLE, CODEC_ID_QTRLE, "Apple Quicktime Animation/RLE (ffmpeg)"}, - {BUF_VIDEO_H264, CODEC_ID_H264, "H.264/AVC (ffmpeg"} }; + {BUF_VIDEO_H264, CODEC_ID_H264, "H.264/AVC (ffmpeg)"} }; static void ff_check_bufsize (ff_video_decoder_t *this, int size) { if (size > this->bufsize) { |