comparison mpegts.h @ 3852:1b6245500d8c libavformat

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents 2ca19db359bd
children 77e0c7511d41
comparison
equal deleted inserted replaced
3851:9b3ad7f292a4 3852:1b6245500d8c
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #ifndef FFMPEG_MPEGTS_H 22 #ifndef AVFORMAT_MPEGTS_H
23 #define FFMPEG_MPEGTS_H 23 #define AVFORMAT_MPEGTS_H
24 24
25 #include "avformat.h" 25 #include "avformat.h"
26 26
27 #define TS_FEC_PACKET_SIZE 204 27 #define TS_FEC_PACKET_SIZE 204
28 #define TS_DVHS_PACKET_SIZE 192 28 #define TS_DVHS_PACKET_SIZE 192
65 MpegTSContext *mpegts_parse_open(AVFormatContext *s); 65 MpegTSContext *mpegts_parse_open(AVFormatContext *s);
66 int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, 66 int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
67 const uint8_t *buf, int len); 67 const uint8_t *buf, int len);
68 void mpegts_parse_close(MpegTSContext *ts); 68 void mpegts_parse_close(MpegTSContext *ts);
69 69
70 #endif /* FFMPEG_MPEGTS_H */ 70 #endif /* AVFORMAT_MPEGTS_H */