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