Skip to content
Snippets Groups Projects
Commit 422142d3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

rtp: fix typo

parent ca57d660
No related branches found
Tags 0.8.2
No related merge requests found
......@@ -273,7 +273,7 @@ static struct vlc_rtp_pt *vlc_rtp_pt_create(vlc_object_t *obj,
pt->ops = &rtp_audio_pcma;
else if (strcmp(desc->name, "L16") == 0)
pt->ops = &rtp_audio_l16;
else if (strcmp(desc->name, "QCLEP") == 0)
else if (strcmp(desc->name, "QCELP") == 0)
pt->ops = &rtp_audio_qcelp;
else if (strcmp(desc->name, "MPA") == 0)
pt->ops = &rtp_audio_mpa;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment