diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2005-05-30 16:01:52 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2005-05-30 16:01:52 +0000 |
commit | 5ad89d48171c9abed6c2f4f9a95d36051cefc340 (patch) | |
tree | 5a40d1ccca4711b3255ceb775d4288aaa6c8a536 /src | |
parent | 77373630ab3cbda175ac723b96b75aca9aa92ffe (diff) | |
download | xine-lib-5ad89d48171c9abed6c2f4f9a95d36051cefc340.tar.gz xine-lib-5ad89d48171c9abed6c2f4f9a95d36051cefc340.tar.bz2 |
**BUGFIX**
Fix use of ffmpeg provided aspect, previous test would always be false
CVS patchset: 7597
CVS date: 2005/05/30 16:01:52
Diffstat (limited to 'src')
-rw-r--r-- | src/libffmpeg/video_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libffmpeg/video_decoder.c b/src/libffmpeg/video_decoder.c index 2a41cf233..82d74ed6b 100644 --- a/src/libffmpeg/video_decoder.c +++ b/src/libffmpeg/video_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: video_decoder.c,v 1.50 2005/05/28 02:27:50 tmmm Exp $ + * $Id: video_decoder.c,v 1.51 2005/05/30 16:01:52 jstembridge Exp $ * * xine video decoder plugin using ffmpeg * @@ -1210,7 +1210,7 @@ static void ff_handle_buffer (ff_video_decoder_t *this, buf_element_t *buf) { static void ff_decode_data (video_decoder_t *this_gen, buf_element_t *buf) { ff_video_decoder_t *this = (ff_video_decoder_t *) this_gen; - AVRational avr00 = {0, 0}; + AVRational avr00 = {0, 1}; lprintf ("processing packet type = %08x, len = %d, decoder_flags=%08x\n", buf->type, buf->size, buf->decoder_flags); |