Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: patched-ffmpeg-mt/libavcodec/mpegvideo_parser.c

Issue 789004: ffmpeg roll of source to mar 9 version... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * MPEG1 / MPEG2 video parser 2 * MPEG1 / MPEG2 video parser
3 * Copyright (c) 2000,2001 Fabrice Bellard 3 * Copyright (c) 2000,2001 Fabrice Bellard
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> 4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5 * 5 *
6 * This file is part of FFmpeg. 6 * This file is part of FFmpeg.
7 * 7 *
8 * FFmpeg is free software; you can redistribute it and/or 8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 } 175 }
176 return 0; 176 return 0;
177 } 177 }
178 178
179 AVCodecParser mpegvideo_parser = { 179 AVCodecParser mpegvideo_parser = {
180 { CODEC_ID_MPEG1VIDEO, CODEC_ID_MPEG2VIDEO }, 180 { CODEC_ID_MPEG1VIDEO, CODEC_ID_MPEG2VIDEO },
181 sizeof(ParseContext1), 181 sizeof(ParseContext1),
182 NULL, 182 NULL,
183 mpegvideo_parse, 183 mpegvideo_parse,
184 ff_parse1_close, 184 ff_parse1_close,
185 mpegvideo_split,
185 }; 186 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698