Mercurial > libavformat.hg
comparison mpegts.c @ 1169:d18cc9a1fd02 libavformat
allow individual selection of muxers and demuxers
author | mru |
---|---|
date | Mon, 10 Jul 2006 21:14:37 +0000 |
parents | d89d7ef290da |
children | 8505bbb024c5 |
comparison
equal
deleted
inserted
replaced
1168:c894489e2abe | 1169:d18cc9a1fd02 |
---|---|
1521 mpegts_read_close, | 1521 mpegts_read_close, |
1522 read_seek, | 1522 read_seek, |
1523 mpegts_get_pcr, | 1523 mpegts_get_pcr, |
1524 .flags = AVFMT_SHOW_IDS, | 1524 .flags = AVFMT_SHOW_IDS, |
1525 }; | 1525 }; |
1526 | |
1527 int mpegts_init(void) | |
1528 { | |
1529 av_register_input_format(&mpegts_demuxer); | |
1530 #ifdef CONFIG_MUXERS | |
1531 av_register_output_format(&mpegts_muxer); | |
1532 #endif | |
1533 return 0; | |
1534 } |