~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavformat/omadec.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-01-18 15:46:55 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20140118154655-iz6u00yevkat1jqi
Tags: 6:10~alpha2-1
New Upstream release 10_alpha2. This upstream git snapshot has too many
changes to list here, cf. to the upstream Changelog:
http://git.libav.org/?p=libav.git;a=blob;f=Changelog;hb=refs/tags/v10_alpha2

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 * - Sound data organized in packets follow the EA3 header
38
38
 *   (can be encrypted using the Sony DRM!).
39
39
 *
40
 
 * CODEC SUPPORT: Only ATRAC3 codec is currently supported!
 
40
 * Supported decoders: ATRAC3, ATRAC3+, MP3, LPCM
41
41
 */
42
42
 
43
43
#include "libavutil/channel_layout.h"
386
386
        st->codec->sample_rate = samplerate;
387
387
        st->codec->bit_rate    = samplerate * framesize * 8 / 2048;
388
388
        avpriv_set_pts_info(st, 64, 1, samplerate);
389
 
        av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
390
389
        break;
391
390
    case OMA_CODECID_MP3:
392
391
        st->need_parsing = AVSTREAM_PARSE_FULL;