| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |