| OLD | NEW |
| 1 /* | 1 /* |
| 2 * RTP muxer definitions | 2 * RTP muxer definitions |
| 3 * Copyright (c) 2002 Fabrice Bellard | 3 * Copyright (c) 2002 Fabrice Bellard |
| 4 * | 4 * |
| 5 * This file is part of FFmpeg. | 5 * This file is part of FFmpeg. |
| 6 * | 6 * |
| 7 * FFmpeg is free software; you can redistribute it and/or | 7 * FFmpeg is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Lesser General Public | 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2.1 of the License, or (at your option) any later version. | 10 * version 2.1 of the License, or (at your option) any later version. |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 typedef struct RTPMuxContext RTPMuxContext; | 61 typedef struct RTPMuxContext RTPMuxContext; |
| 62 | 62 |
| 63 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m); | 63 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m); |
| 64 | 64 |
| 65 void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size); | 65 void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size); |
| 66 void ff_rtp_send_h263(AVFormatContext *s1, const uint8_t *buf1, int size); | 66 void ff_rtp_send_h263(AVFormatContext *s1, const uint8_t *buf1, int size); |
| 67 void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size); | 67 void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size); |
| 68 void ff_rtp_send_amr(AVFormatContext *s1, const uint8_t *buff, int size); | 68 void ff_rtp_send_amr(AVFormatContext *s1, const uint8_t *buff, int size); |
| 69 void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size); | 69 void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size); |
| 70 void ff_rtp_send_xiph(AVFormatContext *s1, const uint8_t *buff, int size); | 70 void ff_rtp_send_xiph(AVFormatContext *s1, const uint8_t *buff, int size); |
| 71 void ff_rtp_send_vp8(AVFormatContext *s1, const uint8_t *buff, int size); |
| 71 | 72 |
| 72 #endif /* AVFORMAT_RTPENC_H */ | 73 #endif /* AVFORMAT_RTPENC_H */ |
| OLD | NEW |