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

Side by Side Diff: source/patched-ffmpeg-mt/libavformat/flacdec.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 * Raw FLAC demuxer 2 * Raw FLAC demuxer
3 * Copyright (c) 2001 Fabrice Bellard 3 * Copyright (c) 2001 Fabrice Bellard
4 * 4 *
5 * This file is part of FFmpeg. 5 * This file is part of FFmpeg.
6 * 6 *
7 * FFmpeg is free software; you can redistribute it and/or 7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public 8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version. 10 * version 2.1 of the License, or (at your option) any later version.
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 AVInputFormat flac_demuxer = { 126 AVInputFormat flac_demuxer = {
127 "flac", 127 "flac",
128 NULL_IF_CONFIG_SMALL("raw FLAC"), 128 NULL_IF_CONFIG_SMALL("raw FLAC"),
129 0, 129 0,
130 flac_probe, 130 flac_probe,
131 flac_read_header, 131 flac_read_header,
132 ff_raw_read_partial_packet, 132 ff_raw_read_partial_packet,
133 .flags= AVFMT_GENERIC_INDEX, 133 .flags= AVFMT_GENERIC_INDEX,
134 .extensions = "flac", 134 .extensions = "flac",
135 .value = CODEC_ID_FLAC, 135 .value = CODEC_ID_FLAC,
136 .metadata_conv = ff_vorbiscomment_metadata_conv,
137 }; 136 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698