~ubuntu-branches/ubuntu/vivid/brasero/vivid-proposed

« back to all changes in this revision

Viewing changes to src/burn-job.c

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort, Josselin Mouette, Emilio Pozuelo Monfort
  • Date: 2009-09-05 12:11:18 UTC
  • mfrom: (1.3.2 upstream)
  • mto: (1.5.1 sid)
  • mto: This revision was merged to the branch mainline in revision 72.
  • Revision ID: james.westby@ubuntu.com-20090905121118-zbk0riczqn2is008
Tags: 2.26.3-1
[ Josselin Mouette ]
* Recommend cdrdao. Closes: #525140.
* Only use stable versions in watch file.

[ Emilio Pozuelo Monfort ]
* New upstream bugfix release.
  - Don't hang at normalizing tracks. Closes: #533605.
* debian/watch: Don't uupdate.
* debian/patches/090_relibtoolize.patch: Refreshed.
* debian/patches/001_hal_null_pointer_dereference.patch:
  Patch from Rogério Brito to not crash if hal isn't installed.
  Closes: #539624.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1901
1901
 
1902
1902
BraseroBurnResult
1903
1903
brasero_job_set_output_size_for_current_track (BraseroJob *self,
1904
 
                                               gint64 sectors,
1905
 
                                               gint64 size)
 
1904
                                               goffset sectors,
 
1905
                                               goffset bytes)
1906
1906
{
1907
1907
        BraseroJobPrivate *priv;
1908
1908
 
1922
1922
 
1923
1923
        return brasero_task_ctx_set_output_size_for_current_track (priv->ctx,
1924
1924
                                                                   sectors,
1925
 
                                                                   size);
 
1925
                                                                   bytes);
1926
1926
}
1927
1927
 
1928
1928
BraseroBurnResult
1929
1929
brasero_job_set_written_track (BraseroJob *self,
1930
 
                               gint64 written)
 
1930
                               goffset written)
1931
1931
{
1932
1932
        BraseroJobPrivate *priv;
1933
1933
 
1943
1943
 
1944
1944
BraseroBurnResult
1945
1945
brasero_job_set_written_session (BraseroJob *self,
1946
 
                                 gint64 written)
 
1946
                                 goffset written)
1947
1947
{
1948
1948
        BraseroJobPrivate *priv;
1949
1949