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

Side by Side Diff: source/patched-ffmpeg-mt/libavformat/oma.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 * Sony OpenMG (OMA) demuxer 2 * Sony OpenMG (OMA) demuxer
3 * 3 *
4 * Copyright (c) 2008 Maxim Poliakovski 4 * Copyright (c) 2008 Maxim Poliakovski
5 * 2008 Benjamin Larsson 5 * 2008 Benjamin Larsson
6 * 6 *
7 * This file is part of FFmpeg. 7 * This file is part of FFmpeg.
8 * 8 *
9 * FFmpeg is free software; you can redistribute it and/or 9 * FFmpeg is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public 10 * modify it under the terms of the GNU Lesser General Public
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 NULL_IF_CONFIG_SMALL("Sony OpenMG audio"), 194 NULL_IF_CONFIG_SMALL("Sony OpenMG audio"),
195 0, 195 0,
196 oma_read_probe, 196 oma_read_probe,
197 oma_read_header, 197 oma_read_header,
198 oma_read_packet, 198 oma_read_packet,
199 0, 199 0,
200 pcm_read_seek, 200 pcm_read_seek,
201 .flags= AVFMT_GENERIC_INDEX, 201 .flags= AVFMT_GENERIC_INDEX,
202 .extensions = "oma,aa3", 202 .extensions = "oma,aa3",
203 .codec_tag= (const AVCodecTag* const []){codec_oma_tags, 0}, 203 .codec_tag= (const AVCodecTag* const []){codec_oma_tags, 0},
204 .metadata_conv = ff_id3v2_metadata_conv,
205 }; 204 };
206 205
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698