~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavformat/oggparsetheora.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-04-19 15:04:55 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20110419150455-c1nac6gjm3t2aa4n
Tags: 4:0.7~b1-1
* New upstream version
* bump SONAME and SHLIBS
* configure flags --disable-stripping was removed upstream
* the MAINTAINERS file was removed upstream
* remove patch disable-configuration-warning.patch
* drop avfilter confflags, it is enable by default in 0.7
* libfaad wrapper has been removed upstream
* also update the *contents* of the lintian overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
            st->codec->time_base.num = 1;
92
92
            st->codec->time_base.den = 25;
93
93
        }
94
 
        st->time_base = st->codec->time_base;
 
94
        av_set_pts_info(st, 64, st->codec->time_base.num, st->codec->time_base.den);
95
95
 
96
96
        st->sample_aspect_ratio.num = get_bits_long(&gb, 24);
97
97
        st->sample_aspect_ratio.den = get_bits_long(&gb, 24);