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

Side by Side Diff: source/patched-ffmpeg-mt/libavformat/oggdec.c

Issue 4533003: patched ffmpeg nov 2 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 1 month 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 * Ogg bitstream support 2 * Ogg bitstream support
3 * Luca Barbato <lu_zero@gentoo.org> 3 * Luca Barbato <lu_zero@gentoo.org>
4 * Based on tcvp implementation 4 * Based on tcvp implementation
5 * 5 *
6 */ 6 */
7 7
8 /** 8 /**
9 Copyright (C) 2005 Michael Ahlberg, Måns Rullgård 9 Copyright (C) 2005 Michael Ahlberg, Måns Rullgård
10 10
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 "ogg", 671 "ogg",
672 NULL_IF_CONFIG_SMALL("Ogg"), 672 NULL_IF_CONFIG_SMALL("Ogg"),
673 sizeof (struct ogg), 673 sizeof (struct ogg),
674 ogg_probe, 674 ogg_probe,
675 ogg_read_header, 675 ogg_read_header,
676 ogg_read_packet, 676 ogg_read_packet,
677 ogg_read_close, 677 ogg_read_close,
678 ogg_read_seek, 678 ogg_read_seek,
679 ogg_read_timestamp, 679 ogg_read_timestamp,
680 .extensions = "ogg", 680 .extensions = "ogg",
681 .metadata_conv = ff_vorbiscomment_metadata_conv,
682 .flags = AVFMT_GENERIC_INDEX, 681 .flags = AVFMT_GENERIC_INDEX,
683 }; 682 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698