diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2003-05-03 21:53:21 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2003-05-03 21:53:21 +0000 |
commit | 6d2e3de06d61d22ef9e24b250be6d222e19bb3a7 (patch) | |
tree | cd1734da817a8ceb060cc534a4edac670854a3ea | |
parent | e088d09fda0719b861d097cbfebf4caee7d62c95 (diff) | |
download | xine-lib-6d2e3de06d61d22ef9e24b250be6d222e19bb3a7.tar.gz xine-lib-6d2e3de06d61d22ef9e24b250be6d222e19bb3a7.tar.bz2 |
- inform the name of the video codec, nicer properties :)
CVS patchset: 4758
CVS date: 2003/05/03 21:53:21
-rw-r--r-- | src/demuxers/demux_ogg.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c index e5b714d2d..c1d9744c7 100644 --- a/src/demuxers/demux_ogg.c +++ b/src/demuxers/demux_ogg.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: demux_ogg.c,v 1.89 2003/05/01 21:25:14 hadess Exp $ + * $Id: demux_ogg.c,v 1.90 2003/05/03 21:53:21 hadess Exp $ * * demultiplexer for ogg streams * @@ -932,6 +932,8 @@ static void demux_ogg_send_header (demux_ogg_t *this) { this->preview_buffers[stream_num]=1; this->buf_types[stream_num] = BUF_VIDEO_THEORA; + this->stream->meta_info[XINE_META_INFO_VIDEOCODEC] + = strdup ("theora"); this->stream->stream_info[XINE_STREAM_INFO_VIDEO_WIDTH] = this->t_info.width; this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HEIGHT] @@ -947,6 +949,8 @@ static void demux_ogg_send_header (demux_ogg_t *this) { } #else this->buf_types[stream_num] = BUF_VIDEO_THEORA; + this->stream->meta_info[XINE_META_INFO_VIDEOCODEC] + = strdup ("theora"); #endif } else { |