Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Side by Side Diff: source/patched-ffmpeg-mt/libavformat/rtpenc.h

Issue 3384002: ffmpeg source update for sep 09 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 */
OLDNEW
« no previous file with comments | « source/patched-ffmpeg-mt/libavformat/rtpdec_vp8.c ('k') | source/patched-ffmpeg-mt/libavformat/rtpenc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698