ffmpeg/libavdevice
Anton Khirnov 9200514ad8 lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.

In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.

There are multiple important problems with this approach:
    - the fields in AVCodecContext are in general one of
        * stream parameters
        * codec options
        * codec state
      However, it's not clear which ones are which. It is consequently
      unclear which fields are a demuxer allowed to set or a muxer allowed to
      read. This leads to erratic behaviour depending on whether decoding or
      encoding is being performed or not (and whether it uses the AVStream
      embedded codec context).
    - various synchronization issues arising from the fact that the same
      context is used by several different APIs (muxers/demuxers,
      parsers, bitstream filters and encoders/decoders) simultaneously, with
      there being no clear rules for who can modify what and the different
      processes being typically delayed with respect to each other.
    - avformat_find_stream_info() making it necessary to support opening
      and closing a single codec context multiple times, thus
      complicating the semantics of freeing various allocated objects in the
      codec context.

Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2016-02-23 17:01:58 +01:00
..
Makefile avfoundation: Simple capture 2015-11-26 10:55:28 +01:00
alldevices.c avfoundation: Simple capture 2015-11-26 10:55:28 +01:00
alsa.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
alsa.h avdevice: Apply a more consistent file naming scheme 2015-04-09 16:40:12 +02:00
alsa_dec.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
alsa_enc.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
avdevice.c
avdevice.h
avfoundation_dec.m avfoundation: Simple capture 2015-11-26 10:55:28 +01:00
bktr.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
dv1394.c Replace av_dlog with normal av_log at trace level 2015-04-19 12:41:59 +01:00
dv1394.h
fbdev.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
file_open.c
jack.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
libavdevice.v
libcdio.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
libdc1394.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
oss.c avdevice: Apply a more consistent file naming scheme 2015-04-09 16:40:12 +02:00
oss.h avdevice: Apply a more consistent file naming scheme 2015-04-09 16:40:12 +02:00
oss_dec.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
oss_enc.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
pulse.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
sndio.c avdevice: Apply a more consistent file naming scheme 2015-04-09 16:40:12 +02:00
sndio.h avdevice: Apply a more consistent file naming scheme 2015-04-09 16:40:12 +02:00
sndio_dec.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
sndio_enc.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
timefilter.c timefilter: Handle memory allocation failure 2013-10-29 11:40:04 +00:00
timefilter.h timefilter: Handle memory allocation failure 2013-10-29 11:40:04 +00:00
v4l2.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
version.h avfoundation: Simple capture 2015-11-26 10:55:28 +01:00
vfwcap.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
x11grab.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00
xcbgrab.c lavf: replace AVStream.codec with AVStream.codecpar 2016-02-23 17:01:58 +01:00