diff --git a/libavformat/rtpdec_g726.c b/libavformat/rtpdec_g726.c
index 172a4b3..2de09ac 100644
|
a
|
b
|
static av_cold int g726_ ## bitrate ##_init(AVFormatContext *s, int st_index, \
|
| 36 | 36 | } \ |
| 37 | 37 | \ |
| 38 | 38 | RTPDynamicProtocolHandler ff_g726_ ## bitrate ## _dynamic_handler = { \ |
| 39 | | .enc_name = "G726-" #bitrate, \ |
| | 39 | .enc_name = "AAL2-G726-" #bitrate, \ |
| 40 | 40 | .codec_type = AVMEDIA_TYPE_AUDIO, \ |
| 41 | 41 | .codec_id = AV_CODEC_ID_ADPCM_G726, \ |
| 42 | 42 | .init = g726_ ## bitrate ## _init, \ |
| | 43 | }; \ |
| | 44 | RTPDynamicProtocolHandler ff_g726le_ ## bitrate ## _dynamic_handler = { \ |
| | 45 | .enc_name = "G726-" #bitrate, \ |
| | 46 | .codec_type = AVMEDIA_TYPE_AUDIO, \ |
| | 47 | .codec_id = AV_CODEC_ID_ADPCM_G726LE, \ |
| | 48 | .init = g726_ ## bitrate ## _init, \ |
| 43 | 49 | } |
| 44 | 50 | |
| 45 | 51 | RTP_G726_HANDLER(16); |