~siretart/ubuntu/utopic/libav/libav10

« back to all changes in this revision

Viewing changes to libavutil/x86/emms.asm

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-05-11 12:28:45 UTC
  • mfrom: (1.1.22) (2.1.38 experimental)
  • Revision ID: package-import@ubuntu.com-20140511122845-gxvpts83i958y0i5
Tags: 6:10.1-1
* New upstream release 10:
   - pcm-dvd: Fix 20bit decoding (bug/592)
   - avi: Improve non-interleaved detection (bug/666)
   - arm: hpeldsp: fix put_pixels8_y2_{,no_rnd_}armv6
   - arm: hpeldsp: prevent overreads in armv6 asm (bug/646)
   - avfilter: Add missing emms_c when needed
   - rtmpproto: Check the buffer sizes when copying app/playpath strings
   - swscale: Fix an undefined behaviour
   - vp9: Read the frame size as unsigned
   - dcadec: Use correct channel count in stereo downmix check
   - dcadec: Do not decode the XCh extension when downmixing to stereo
   - matroska: add the Opus mapping
   - matroskadec: read the CodecDelay element
   - rtmpproto: Make sure to pass on the error code if read_connect failed
   - lavr: allocate the resampling buffer with a positive size
   - mp3enc: Properly write bitrate value in XING header (Closes: #736088)
   - golomb: Fix the implementation of get_se_golomb_long
* Drop debian/libav-tools.maintscript. ffserver is no longer found in
  stable, and this seems to cause other problems today (Closes: #742676)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;*****************************************************************************
 
2
;* Copyright (C) 2013 Martin Storsjo
 
3
;*
 
4
;* This file is part of Libav.
 
5
;*
 
6
;* Libav is free software; you can redistribute it and/or
 
7
;* modify it under the terms of the GNU Lesser General Public
 
8
;* License as published by the Free Software Foundation; either
 
9
;* version 2.1 of the License, or (at your option) any later version.
 
10
;*
 
11
;* Libav is distributed in the hope that it will be useful,
 
12
;* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
;* Lesser General Public License for more details.
 
15
;*
 
16
;* You should have received a copy of the GNU Lesser General Public
 
17
;* License along with Libav; if not, write to the Free Software
 
18
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
19
;******************************************************************************
 
20
 
 
21
%include "x86util.asm"
 
22
 
 
23
SECTION .text
 
24
 
 
25
;-----------------------------------------------------------------------------
 
26
; void avpriv_emms_yasm(void)
 
27
;-----------------------------------------------------------------------------
 
28
cvisible emms_yasm, 0, 0
 
29
    emms
 
30
    RET