diff options
author | Martin Storsjö <martin@martin.st> | 2010-04-02 11:33:02 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-04-02 11:33:02 +0000 |
commit | 4bebf2cf64ef64ac419a9bbc6f2cdecbdb4c08a4 (patch) | |
tree | de6aa3db998123ed2562864bf4b2818ddc4fc1bb /libavformat/rtpdec_xiph.c | |
parent | 2d603902f3570de81a26b20bf056c30597be08a2 (diff) | |
download | ffmpeg-4bebf2cf64ef64ac419a9bbc6f2cdecbdb4c08a4.tar.gz |
Change a case of CODEC_TYPE_ into AVMEDIA_TYPE_
This was accidentally overwritten in the recent merge of the theora/vorbis codepaths
Originally committed as revision 22774 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpdec_xiph.c')
-rw-r--r-- | libavformat/rtpdec_xiph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_xiph.c b/libavformat/rtpdec_xiph.c index 1567b6131b..302f9858d3 100644 --- a/libavformat/rtpdec_xiph.c +++ b/libavformat/rtpdec_xiph.c @@ -390,7 +390,7 @@ RTPDynamicProtocolHandler ff_theora_dynamic_handler = { RTPDynamicProtocolHandler ff_vorbis_dynamic_handler = { .enc_name = "vorbis", - .codec_type = CODEC_TYPE_AUDIO, + .codec_type = AVMEDIA_TYPE_AUDIO, .codec_id = CODEC_ID_VORBIS, .parse_sdp_a_line = xiph_parse_sdp_line, .open = xiph_new_context, |