diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-11-14 04:22:55 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-11-14 04:22:55 +0000 |
commit | cb865c28a93efd16686ead102a165fec0a1b2fda (patch) | |
tree | d569b797b7883b4b54fc4adf36523a64ac53c5d9 | |
parent | 6f0c6b7321c2174032d55456e0d824b8ce4c83b5 (diff) | |
download | xine-lib-cb865c28a93efd16686ead102a165fec0a1b2fda.tar.gz xine-lib-cb865c28a93efd16686ead102a165fec0a1b2fda.tar.bz2 |
cut & paste bandit strikes again
CVS patchset: 3258
CVS date: 2002/11/14 04:22:55
-rw-r--r-- | src/libffmpeg/xine_decoder.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libffmpeg/xine_decoder.c b/src/libffmpeg/xine_decoder.c index 417090e48..01cec035a 100644 --- a/src/libffmpeg/xine_decoder.c +++ b/src/libffmpeg/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.67 2002/11/13 03:22:41 tmmm Exp $ + * $Id: xine_decoder.c,v 1.68 2002/11/14 04:22:55 tmmm Exp $ * * xine decoder plugin using ffmpeg * @@ -752,13 +752,13 @@ static void ff_audio_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) switch (codec_type) { case BUF_AUDIO_WMAV1: codec = avcodec_find_decoder (CODEC_ID_WMAV1); - this->stream->meta_info[XINE_META_INFO_VIDEOCODEC] - = strdup ("Windows Media Audio v1"); + this->stream->meta_info[XINE_META_INFO_AUDIOCODEC] + = strdup ("Windows Media Audio v1 (ffmpeg)"); break; case BUF_AUDIO_WMAV2: codec = avcodec_find_decoder (CODEC_ID_WMAV2); - this->stream->meta_info[XINE_META_INFO_VIDEOCODEC] - = strdup ("Windows Media Audio v2"); + this->stream->meta_info[XINE_META_INFO_AUDIOCODEC] + = strdup ("Windows Media Audio v2 (ffmpeg)"); break; } |