1cabdff1aSopenharmony_ci/*
2cabdff1aSopenharmony_ci * RTP depacketizer declarations
3cabdff1aSopenharmony_ci * Copyright (c) 2010 Martin Storsjo
4cabdff1aSopenharmony_ci *
5cabdff1aSopenharmony_ci * This file is part of FFmpeg.
6cabdff1aSopenharmony_ci *
7cabdff1aSopenharmony_ci * FFmpeg is free software; you can redistribute it and/or
8cabdff1aSopenharmony_ci * modify it under the terms of the GNU Lesser General Public
9cabdff1aSopenharmony_ci * License as published by the Free Software Foundation; either
10cabdff1aSopenharmony_ci * version 2.1 of the License, or (at your option) any later version.
11cabdff1aSopenharmony_ci *
12cabdff1aSopenharmony_ci * FFmpeg is distributed in the hope that it will be useful,
13cabdff1aSopenharmony_ci * but WITHOUT ANY WARRANTY; without even the implied warranty of
14cabdff1aSopenharmony_ci * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15cabdff1aSopenharmony_ci * Lesser General Public License for more details.
16cabdff1aSopenharmony_ci *
17cabdff1aSopenharmony_ci * You should have received a copy of the GNU Lesser General Public
18cabdff1aSopenharmony_ci * License along with FFmpeg; if not, write to the Free Software
19cabdff1aSopenharmony_ci * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20cabdff1aSopenharmony_ci */
21cabdff1aSopenharmony_ci
22cabdff1aSopenharmony_ci#ifndef AVFORMAT_RTPDEC_FORMATS_H
23cabdff1aSopenharmony_ci#define AVFORMAT_RTPDEC_FORMATS_H
24cabdff1aSopenharmony_ci
25cabdff1aSopenharmony_ci#include "rtpdec.h"
26cabdff1aSopenharmony_ci
27cabdff1aSopenharmony_ci/**
28cabdff1aSopenharmony_ci * Parse a Windows Media Server-specific SDP line
29cabdff1aSopenharmony_ci *
30cabdff1aSopenharmony_ci * @param s RTSP demux context
31cabdff1aSopenharmony_ci */
32cabdff1aSopenharmony_ciint ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p);
33cabdff1aSopenharmony_ci
34cabdff1aSopenharmony_ciint ff_h263_handle_packet(AVFormatContext *ctx, PayloadContext *data,
35cabdff1aSopenharmony_ci                          AVStream *st, AVPacket *pkt, uint32_t *timestamp,
36cabdff1aSopenharmony_ci                          const uint8_t *buf, int len, uint16_t seq, int flags);
37cabdff1aSopenharmony_ci
38cabdff1aSopenharmony_ciint ff_h264_parse_sprop_parameter_sets(AVFormatContext *s,
39cabdff1aSopenharmony_ci                                       uint8_t **data_ptr, int *size_ptr,
40cabdff1aSopenharmony_ci                                       const char *value);
41cabdff1aSopenharmony_ciint ff_h264_handle_aggregated_packet(AVFormatContext *ctx, PayloadContext *data, AVPacket *pkt,
42cabdff1aSopenharmony_ci                                     const uint8_t *buf, int len,
43cabdff1aSopenharmony_ci                                     int start_skip, int *nal_counters,
44cabdff1aSopenharmony_ci                                     int nal_mask);
45cabdff1aSopenharmony_ciint ff_h264_handle_frag_packet(AVPacket *pkt, const uint8_t *buf, int len,
46cabdff1aSopenharmony_ci                               int start_bit, const uint8_t *nal_header,
47cabdff1aSopenharmony_ci                               int nal_header_len);
48cabdff1aSopenharmony_civoid ff_h264_parse_framesize(AVCodecParameters *par, const char *p);
49cabdff1aSopenharmony_ci
50cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_ac3_dynamic_handler;
51cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_amr_nb_dynamic_handler;
52cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_amr_wb_dynamic_handler;
53cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_dv_dynamic_handler;
54cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_g726_16_dynamic_handler;
55cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_g726_24_dynamic_handler;
56cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_g726_32_dynamic_handler;
57cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_g726_40_dynamic_handler;
58cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_g726le_16_dynamic_handler;
59cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_g726le_24_dynamic_handler;
60cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_g726le_32_dynamic_handler;
61cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_g726le_40_dynamic_handler;
62cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_h261_dynamic_handler;
63cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_h263_1998_dynamic_handler;
64cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_h263_2000_dynamic_handler;
65cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_h263_rfc2190_dynamic_handler;
66cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_h264_dynamic_handler;
67cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_hevc_dynamic_handler;
68cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_ilbc_dynamic_handler;
69cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_jpeg_dynamic_handler;
70cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_mp4a_latm_dynamic_handler;
71cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_mp4v_es_dynamic_handler;
72cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_mpeg_audio_dynamic_handler;
73cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_mpeg_audio_robust_dynamic_handler;
74cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_mpeg_video_dynamic_handler;
75cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_mpeg4_generic_dynamic_handler;
76cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_mpegts_dynamic_handler;
77cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_ms_rtp_asf_pfa_handler;
78cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_ms_rtp_asf_pfv_handler;
79cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_qcelp_dynamic_handler;
80cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_qdm2_dynamic_handler;
81cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_qt_rtp_aud_handler;
82cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_qt_rtp_vid_handler;
83cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_quicktime_rtp_aud_handler;
84cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_quicktime_rtp_vid_handler;
85cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_rfc4175_rtp_handler;
86cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_svq3_dynamic_handler;
87cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_theora_dynamic_handler;
88cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_vc2hq_dynamic_handler;
89cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_vorbis_dynamic_handler;
90cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_vp8_dynamic_handler;
91cabdff1aSopenharmony_ciextern const RTPDynamicProtocolHandler ff_vp9_dynamic_handler;
92cabdff1aSopenharmony_ci
93cabdff1aSopenharmony_ci#endif /* AVFORMAT_RTPDEC_FORMATS_H */
94